Plugin Directory

Changeset 3068560


Ignore:
Timestamp:
04/10/2024 02:53:38 PM (2 years ago)
Author:
a2hosting
Message:

Tagging version 3.0.8.2

Location:
a2-optimized-wp/tags/3.0.8.2
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • a2-optimized-wp/tags/3.0.8.2/a2-optimized.php

    r3045919 r3068560  
    1010 * Plugin Name: A2 Optimized WP
    1111 * Plugin URI: https://wordpress.org/plugins/a2-optimized/
    12  * Version: 3.0.8.1
     12 * Version: 3.0.8.2
    1313 * Author: A2 Hosting
    1414 * Author URI: https://www.a2hosting.com/
     
    2525
    2626define( 'A2OPT_VERSION', '3.0' );
    27 define( 'A2OPT_FULL_VERSION', '3.0.8.1' );
     27define( 'A2OPT_FULL_VERSION', '3.0.8.2' );
    2828define( 'A2OPT_MIN_PHP', '5.6' );
    2929define( 'A2OPT_MIN_WP', '5.1' );
  • a2-optimized-wp/tags/3.0.8.2/core/A2_Optimized_Optimizations.php

    r3045919 r3068560  
    853853            'post_revisions' => [
    854854                '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.',
    856856                'status' => $this->is_active('post_revisions', false),
    857857            ],
     
    12921292                if (defined('WP_POST_REVISIONS') && WP_POST_REVISIONS == true) {
    12931293                    // 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.';
    12961296                        $result['value'] = true;
    12971297                    } 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.';
    12991299                        $result['value'] = false;
    13001300                    }
  • a2-optimized-wp/tags/3.0.8.2/readme.txt

    r3068558 r3068560  
    44Requires at least: 5.1
    55Tested up to: 6.5.2
    6 Stable tag: 3.0.8.3
     6Stable tag: 3.0.8.2
    77Requires PHP: 7.0
    88License: GPLv3
Note: See TracChangeset for help on using the changeset viewer.