Changeset 3068560
- Timestamp:
- 04/10/2024 02:53:38 PM (2 years ago)
- Location:
- a2-optimized-wp/tags/3.0.8.2
- Files:
-
- 3 edited
- 1 copied
-
. (copied) (copied from a2-optimized-wp/trunk)
-
a2-optimized.php (modified) (2 diffs)
-
core/A2_Optimized_Optimizations.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
a2-optimized-wp/tags/3.0.8.2/a2-optimized.php
r3045919 r3068560 10 10 * Plugin Name: A2 Optimized WP 11 11 * Plugin URI: https://wordpress.org/plugins/a2-optimized/ 12 * Version: 3.0.8. 112 * Version: 3.0.8.2 13 13 * Author: A2 Hosting 14 14 * Author URI: https://www.a2hosting.com/ … … 25 25 26 26 define( 'A2OPT_VERSION', '3.0' ); 27 define( 'A2OPT_FULL_VERSION', '3.0.8. 1' );27 define( 'A2OPT_FULL_VERSION', '3.0.8.2' ); 28 28 define( 'A2OPT_MIN_PHP', '5.6' ); 29 29 define( 'A2OPT_MIN_WP', '5.1' ); -
a2-optimized-wp/tags/3.0.8.2/core/A2_Optimized_Optimizations.php
r3045919 r3068560 853 853 'post_revisions' => [ 854 854 'title' => 'Post Revisions', 855 'description' => 'The number of post revisions should be less than than 10 for most sites. This could slow down page loads.',855 'description' => 'The number of post revisions should be less than than 100 for most sites. This could slow down page loads.', 856 856 'status' => $this->is_active('post_revisions', false), 857 857 ], … … 1292 1292 if (defined('WP_POST_REVISIONS') && WP_POST_REVISIONS == true) { 1293 1293 // post revisions are active 1294 if (is_numeric(WP_POST_REVISIONS) && WP_POST_REVISIONS <= 10 ) {1295 $result['current'] = 'Post revisions are enabled, but less than 10 .';1294 if (is_numeric(WP_POST_REVISIONS) && WP_POST_REVISIONS <= 100) { 1295 $result['current'] = 'Post revisions are enabled, but less than 100.'; 1296 1296 $result['value'] = true; 1297 1297 } else { 1298 $result['current'] = 'Post revisions are enabled with a limit higher than 10 .';1298 $result['current'] = 'Post revisions are enabled with a limit higher than 100.'; 1299 1299 $result['value'] = false; 1300 1300 } -
a2-optimized-wp/tags/3.0.8.2/readme.txt
r3068558 r3068560 4 4 Requires at least: 5.1 5 5 Tested up to: 6.5.2 6 Stable tag: 3.0.8. 36 Stable tag: 3.0.8.2 7 7 Requires PHP: 7.0 8 8 License: GPLv3
Note: See TracChangeset
for help on using the changeset viewer.