Skip to content

Commit

Permalink
PHPCS fix for commit 8d00914
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Feb 27, 2024
1 parent 4176402 commit 5b84ee1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected function _getDeleteCheckbox()
$html = '';
if ((string)$this->getValue()) {
$label = Mage::helper('adminhtml')->__('Delete File');
$html .= '<div>'. Mage::helper('adminhtml')->escapeHtml($this->getValue()) . ' ';
$html .= '<div>' . Mage::helper('adminhtml')->escapeHtml($this->getValue()) . ' ';
$html .= '<input type="checkbox" name="' . parent::getName() . '[delete]" value="1" class="checkbox" id="' . $this->getHtmlId() . '_delete"' . ($this->getDisabled() ? ' disabled="disabled"' : '') . '/>';
$html .= '<label for="' . $this->getHtmlId() . '_delete"' . ($this->getDisabled() ? ' class="disabled"' : '') . '> ' . $label . '</label>';
$html .= '<input type="hidden" name="' . parent::getName() . '[value]" value="' . $this->getValue() . '" />';
Expand Down

0 comments on commit 5b84ee1

Please sign in to comment.