forked from OpenMage/magento-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ea33f8
commit 3254aef
Showing
412 changed files
with
11,036 additions
and
8,707 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,12 +30,13 @@ | |
* @author Magento Core Team <[email protected]> | ||
*/ | ||
|
||
class Mage_Adminhtml_Block_Sales_Order_Create_Totals_Shipping extends Mage_Adminhtml_Block_Sales_Order_Create_Totals_Default | ||
class Mage_Adminhtml_Block_Sales_Order_Create_Totals_Shipping | ||
extends Mage_Adminhtml_Block_Sales_Order_Create_Totals_Default | ||
{ | ||
protected $_template = 'sales/order/create/totals/shipping.phtml'; | ||
|
||
/** | ||
* Check if we need display shipping include and exlude tax | ||
* Check if we need display shipping include and exclude tax | ||
* | ||
* @return bool | ||
*/ | ||
|
@@ -82,7 +83,7 @@ public function getShippingExcludeTax() | |
*/ | ||
public function getIncludeTaxLabel() | ||
{ | ||
return $this->helper('tax')->__('Shipping Incl. Tax (%s)', $this->getTotal()->getAddress()->getShippingDescription()); | ||
return $this->helper('tax')->__('Shipping Incl. Tax (%s)', $this->escapeHtml($this->getTotal()->getAddress()->getShippingDescription())); | ||
} | ||
|
||
/** | ||
|
@@ -92,6 +93,6 @@ public function getIncludeTaxLabel() | |
*/ | ||
public function getExcludeTaxLabel() | ||
{ | ||
return $this->helper('tax')->__('Shipping Excl. Tax (%s)', $this->getTotal()->getAddress()->getShippingDescription()); | ||
return $this->helper('tax')->__('Shipping Excl. Tax (%s)', $this->escapeHtml($this->getTotal()->getAddress()->getShippingDescription())); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,10 +26,10 @@ | |
|
||
|
||
/** | ||
* OAuth consumer edit form block | ||
* Attribute edit form block | ||
* | ||
* @category Mage | ||
* @package Mage_OAuth | ||
* @package Mage_Api2 | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Mage_Api2_Block_Adminhtml_Attribute_Edit_Form extends Mage_Adminhtml_Block_Widget_Form | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,10 @@ | |
*/ | ||
|
||
/** | ||
* OAuth consumers grid container block | ||
* Roles grid container block | ||
* | ||
* @category Mage | ||
* @package Mage_OAuth | ||
* @package Mage_Api2 | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Mage_Api2_Block_Adminhtml_Roles extends Mage_Adminhtml_Block_Widget_Grid_Container | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,10 @@ | |
*/ | ||
|
||
/** | ||
* OAuth Consumer grid block | ||
* Roles grid block | ||
* | ||
* @category Mage | ||
* @package Mage_OAuth | ||
* @package Mage_Api2 | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Mage_Api2_Block_Adminhtml_Roles_Grid extends Mage_Adminhtml_Block_Widget_Grid | ||
|
@@ -126,7 +126,7 @@ public function getRowUrl($row) | |
* Decorate 'User Type' column | ||
* | ||
* @param string $renderedValue Rendered value | ||
* @param Mage_OAuth_Model_Token $row | ||
* @param Mage_Api2_Model_Acl_Global_Role $row | ||
* @param Mage_Adminhtml_Block_Widget_Grid_Column $column | ||
* @param bool $isExport | ||
* @return string | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.