From 76404312a14cc653fa2fbfcc63384fc8a13cf014 Mon Sep 17 00:00:00 2001 From: Sven Reichel Date: Wed, 22 Oct 2025 09:43:13 +0200 Subject: [PATCH 1/2] bump version --- app/Mage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 58cb124b527106634e38d509c775bf0607c2fe30 Mon Sep 17 00:00:00 2001 From: Sven Reichel Date: Sat, 1 Nov 2025 00:46:06 +0100 Subject: [PATCH 2/2] Fix delete confirmation HTML formatting --- .../Adminhtml/Block/Notification/Grid/Renderer/Actions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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?')), );