Skip to content

Commit 67b3eb4

Browse files
authored
Merge pull request #311 from codepress/release/4.2.6
Release/4.2.6
2 parents cde223b + a604eed commit 67b3eb4

File tree

145 files changed

+6346
-4408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+6346
-4408
lines changed

assets/css/admin-page-columns.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/admin-general.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/admin-page-addons.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/admin-page-columns.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/admin-page-columns.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/message-review.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/notice-dismissible.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/table.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

classes/Admin/Page/Columns.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public function render() {
221221

222222
<?= $this->show_read_only_notice( $list_screen ); ?>
223223

224-
<form method="post" id="listscreen_settings" class="<?= $list_screen->is_read_only() ? '-disabled' : ''; ?>">
224+
<div id="listscreen_settings" data-form="listscreen" class="<?= $list_screen->is_read_only() ? '-disabled' : ''; ?>">
225225
<?php
226226

227227
$classes = [];
@@ -255,7 +255,7 @@ public function render() {
255255
do_action( 'ac/settings/after_columns', $list_screen );
256256

257257
?>
258-
</form>
258+
</div>
259259

260260
</div>
261261

classes/Ajax/NumberFormat.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public function request() {
2525
$decimal_point = $this->request->get( 'decimal_point' ) ?: null;
2626
$thousands_sep = $this->request->get( 'thousands_sep' ) ?: '';
2727

28-
echo number_format( $number, $decimals, $decimal_point, $thousands_sep );
29-
exit;
28+
wp_send_json_success( (string) number_format( $number, $decimals, $decimal_point, $thousands_sep ) );
3029
}
3130

3231
}

0 commit comments

Comments
 (0)