Plugin Directory

Changeset 3195215


Ignore:
Timestamp:
11/22/2024 08:42:00 PM (16 months ago)
Author:
astralinternet
Message:

Change the autoload options in the wp_option table from true (default WordPress value) to false to save memory usage.
Wordpress 6.7 compatibility

Location:
wsa-cachepurge/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wsa-cachepurge/trunk/README.txt

    r3123948 r3195215  
    33Tags: cache, purge, wsa, cpwsa, wsa-cachepurge, website acceleration
    44Requires at least: 3.5
    5 Tested up to: 6.6
     5Tested up to: 6.7.1
    66Requires PHP: 5.6
    7 Stable tag: 1.1.2
     7Stable tag: 1.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3030
    3131== Changelog ==
     32
     33= 1.1.3 =
     34* Change the autoload options in the wp_option table from true (default WordPress value) to false to save memory usage.
    3235
    3336= 1.1.2 =
  • wsa-cachepurge/trunk/lib/wsa-cachepurge_wp-module.class.php

    r2901928 r3195215  
    189189                }
    190190
    191                 // add/update tthe option in the WP database
    192                 update_option($singleOptions, $value);
     191                // add/update the option in the WP database
     192                update_option($singleOptions, $value, false);
    193193            }
    194194        }
Note: See TracChangeset for help on using the changeset viewer.