Skip to content

Commit 5b84ee1

Browse files
committed
PHPCS fix for commit 8d00914
1 parent 4176402 commit 5b84ee1

File tree

1 file changed

+1
-1
lines changed
  • app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field

1 file changed

+1
-1
lines changed

app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function _getDeleteCheckbox()
4343
$html = '';
4444
if ((string)$this->getValue()) {
4545
$label = Mage::helper('adminhtml')->__('Delete File');
46-
$html .= '<div>'. Mage::helper('adminhtml')->escapeHtml($this->getValue()) . ' ';
46+
$html .= '<div>' . Mage::helper('adminhtml')->escapeHtml($this->getValue()) . ' ';
4747
$html .= '<input type="checkbox" name="' . parent::getName() . '[delete]" value="1" class="checkbox" id="' . $this->getHtmlId() . '_delete"' . ($this->getDisabled() ? ' disabled="disabled"' : '') . '/>';
4848
$html .= '<label for="' . $this->getHtmlId() . '_delete"' . ($this->getDisabled() ? ' class="disabled"' : '') . '> ' . $label . '</label>';
4949
$html .= '<input type="hidden" name="' . parent::getName() . '[value]" value="' . $this->getValue() . '" />';

0 commit comments

Comments
 (0)