diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php index ea2d6c6f7b2..a60ddd60efd 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Date.php @@ -50,7 +50,7 @@ public function getHtml() $htmlId = $this->_getHtmlId() . microtime(true); $format = $this->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT); $html = '
' - . '' . Mage::helper('adminhtml')->__('From').':' + . '' . Mage::helper('adminhtml')->__('From').'' . '' . '' . '
'; $html.= '
' - . '' . Mage::helper('adminhtml')->__('To').' :' + . '' . Mage::helper('adminhtml')->__('To').'' . '' . '' . Mage::helper('adminhtml')->__('From').':' + . '' . Mage::helper('adminhtml')->__('From').'' . '' . '' . '
'; $html.= '
' - . '' . Mage::helper('adminhtml')->__('To').' :' + . '' . Mage::helper('adminhtml')->__('To').'' . '' . '__('From').':
'; - $html .= '
' . Mage::helper('adminhtml')->__('To').':
'; + $html .= '
' . Mage::helper('adminhtml')->__('From').'
'; + $html .= '
' . Mage::helper('adminhtml')->__('To').'
'; if ($this->getDisplayCurrencySelect()) - $html .= '
' . Mage::helper('adminhtml')->__('In').': ' . $this->_getCurrencySelectHtml() . '
'; + $html .= '
' . Mage::helper('adminhtml')->__('In').'' . $this->_getCurrencySelectHtml() . '
'; $html .= '
'; return $html; diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php index 64c381448d6..5856a39f19f 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Range.php @@ -35,8 +35,8 @@ class Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Range extends Mage_Adminhtm { public function getHtml() { - $html = '
' . Mage::helper('adminhtml')->__('From').':
'; - $html .= '
' . Mage::helper('adminhtml')->__('To').':
'; + $html = '
' . Mage::helper('adminhtml')->__('From').'
'; + $html .= '
' . Mage::helper('adminhtml')->__('To').'
'; return $html; }