Skip to content

Commit fa7c7ef

Browse files
authored
Bump version for 20.16.0 release (#5020)
* bump version * Fix delete confirmation HTML formatting
1 parent 9d604f5 commit fa7c7ef

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/Mage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public static function getOpenMageVersionInfo(): array
212212
if (self::getOpenMageMajorVersion() === 20) {
213213
return [
214214
'major' => '20',
215-
'minor' => '15',
215+
'minor' => '16',
216216
'patch' => '0',
217217
'stability' => '', // beta,alpha,rc
218218
'number' => '', // 1,2,3,0.3.7,x.7.z.92 @see https://semver.org/#spec-item-9

app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Actions.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public function render(Varien_Object $row)
3232
$this->escapeHtml(Mage::helper('adminnotification')->__('Mark as Read')) . '</a> | '
3333
: '';
3434

35-
$deleteConfirmHtml = sprintf("deleteConfirm('%s', this.href)",
35+
$deleteConfirmHtml = sprintf(
36+
"deleteConfirm('%s', this.href)",
3637
Mage::helper('core')->jsQuoteEscape(Mage::helper('adminnotification')->__('Are you sure?')),
3738
);
3839

0 commit comments

Comments
 (0)