diff --git a/app/Mage.php b/app/Mage.php index eba8280376b..ba1ed2b75ce 100644 --- a/app/Mage.php +++ b/app/Mage.php @@ -212,7 +212,7 @@ public static function getOpenMageVersionInfo(): array if (self::getOpenMageMajorVersion() === 20) { return [ 'major' => '20', - 'minor' => '15', + 'minor' => '16', 'patch' => '0', 'stability' => '', // beta,alpha,rc 'number' => '', // 1,2,3,0.3.7,x.7.z.92 @see https://semver.org/#spec-item-9 diff --git a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php index aa6dc855cd6..4fb9eede1f0 100644 --- a/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php +++ b/app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php @@ -32,7 +32,8 @@ public function render(Varien_Object $row) $this->escapeHtml(Mage::helper('adminnotification')->__('Mark as Read')) . ' | ' : ''; - $deleteConfirmHtml = sprintf("deleteConfirm('%s', this.href)", + $deleteConfirmHtml = sprintf( + "deleteConfirm('%s', this.href)", Mage::helper('core')->jsQuoteEscape(Mage::helper('adminnotification')->__('Are you sure?')), );