Changeset 3421853
- Timestamp:
- 12/17/2025 11:54:01 AM (3 months ago)
- Location:
- powered-cache
- Files:
-
- 8 edited
- 1 copied
-
tags/3.7.1 (copied) (copied from powered-cache/trunk)
-
tags/3.7.1/includes/classes/Config.php (modified) (2 diffs)
-
tags/3.7.1/languages/powered-cache.pot (modified) (2 diffs)
-
tags/3.7.1/powered-cache.php (modified) (2 diffs)
-
tags/3.7.1/readme.txt (modified) (2 diffs)
-
trunk/includes/classes/Config.php (modified) (2 diffs)
-
trunk/languages/powered-cache.pot (modified) (2 diffs)
-
trunk/powered-cache.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
powered-cache/tags/3.7.1/includes/classes/Config.php
r3302134 r3421853 114 114 $string .= "defined( 'ABSPATH' ) || exit;" . PHP_EOL; 115 115 $string .= "define( 'POWERED_OBJECT_CACHE', true );" . PHP_EOL; 116 $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) ) {" . PHP_EOL;116 $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) && defined( 'DB_NAME') ) {" . PHP_EOL; 117 117 $string .= "\t" . "define( 'WP_CACHE_KEY_SALT', DB_NAME );" . PHP_EOL; 118 118 $string .= '}' . PHP_EOL; … … 126 126 $string .= '} else {' . PHP_EOL; 127 127 $string .= "\t" . 'define( \'POWERED_OBJECT_CACHE_HAS_PROBLEM\', true );' . PHP_EOL; 128 $string .= '}' ;128 $string .= '}' . PHP_EOL; 129 129 130 130 /** -
powered-cache/tags/3.7.1/languages/powered-cache.pot
r3398618 r3421853 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Powered Cache 3.7 \n"5 "Project-Id-Version: Powered Cache 3.7.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/powered-cache\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-1 1-19T08:06:30+00:00\n"12 "POT-Creation-Date: 2025-12-17T11:50:28+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
powered-cache/tags/3.7.1/powered-cache.php
r3398618 r3421853 4 4 * Plugin URI: https://poweredcache.com 5 5 * Description: Powered Cache is the most powerful caching and performance suite for WordPress, designed to easily improve your PageSpeed and Web Vitals Score. 6 * Version: 3.7 6 * Version: 3.7.1 7 7 * Requires at least: 5.7 8 8 * Requires PHP: 7.4 … … 26 26 27 27 // Useful global constants. 28 define( 'POWERED_CACHE_VERSION', '3.7 ' );28 define( 'POWERED_CACHE_VERSION', '3.7.1' ); 29 29 define( 'POWERED_CACHE_DB_VERSION', '3.4' ); 30 30 define( 'POWERED_CACHE_PLUGIN_FILE', __FILE__ ); -
powered-cache/tags/3.7.1/readme.txt
r3398618 r3421853 4 4 Requires at least: 5.7 5 5 Tested up to: 6.9 6 Stable tag: 3.7 6 Stable tag: 3.7.1 7 7 License: GPLv2 (or later) 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 == Changelog == 173 173 174 = 3.7.1 (December 17, 2025) = 175 - [Updated] Dependencies. 176 - Strictly validate DB_NAME before applying object cache prefixing, preventing errors when wp-config.php is not loaded. 177 174 178 = 3.7 (November 19, 2025) = 175 - [Improved] Cache purge di missing - via ajaxified.179 - [Improved] Cache purge dismissing - via ajaxified. 176 180 - [Improved] Delayed JS dependency chain resolution for better performance and reliability. 177 181 - [Improved] Delayed JS execution now supports DOMContentLoaded. -
powered-cache/trunk/includes/classes/Config.php
r3302134 r3421853 114 114 $string .= "defined( 'ABSPATH' ) || exit;" . PHP_EOL; 115 115 $string .= "define( 'POWERED_OBJECT_CACHE', true );" . PHP_EOL; 116 $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) ) {" . PHP_EOL;116 $string .= "if ( ! defined( 'WP_CACHE_KEY_SALT' ) && defined( 'DB_NAME') ) {" . PHP_EOL; 117 117 $string .= "\t" . "define( 'WP_CACHE_KEY_SALT', DB_NAME );" . PHP_EOL; 118 118 $string .= '}' . PHP_EOL; … … 126 126 $string .= '} else {' . PHP_EOL; 127 127 $string .= "\t" . 'define( \'POWERED_OBJECT_CACHE_HAS_PROBLEM\', true );' . PHP_EOL; 128 $string .= '}' ;128 $string .= '}' . PHP_EOL; 129 129 130 130 /** -
powered-cache/trunk/languages/powered-cache.pot
r3398618 r3421853 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Powered Cache 3.7 \n"5 "Project-Id-Version: Powered Cache 3.7.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/powered-cache\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-1 1-19T08:06:30+00:00\n"12 "POT-Creation-Date: 2025-12-17T11:50:28+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
powered-cache/trunk/powered-cache.php
r3398618 r3421853 4 4 * Plugin URI: https://poweredcache.com 5 5 * Description: Powered Cache is the most powerful caching and performance suite for WordPress, designed to easily improve your PageSpeed and Web Vitals Score. 6 * Version: 3.7 6 * Version: 3.7.1 7 7 * Requires at least: 5.7 8 8 * Requires PHP: 7.4 … … 26 26 27 27 // Useful global constants. 28 define( 'POWERED_CACHE_VERSION', '3.7 ' );28 define( 'POWERED_CACHE_VERSION', '3.7.1' ); 29 29 define( 'POWERED_CACHE_DB_VERSION', '3.4' ); 30 30 define( 'POWERED_CACHE_PLUGIN_FILE', __FILE__ ); -
powered-cache/trunk/readme.txt
r3398618 r3421853 4 4 Requires at least: 5.7 5 5 Tested up to: 6.9 6 Stable tag: 3.7 6 Stable tag: 3.7.1 7 7 License: GPLv2 (or later) 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 == Changelog == 173 173 174 = 3.7.1 (December 17, 2025) = 175 - [Updated] Dependencies. 176 - Strictly validate DB_NAME before applying object cache prefixing, preventing errors when wp-config.php is not loaded. 177 174 178 = 3.7 (November 19, 2025) = 175 - [Improved] Cache purge di missing - via ajaxified.179 - [Improved] Cache purge dismissing - via ajaxified. 176 180 - [Improved] Delayed JS dependency chain resolution for better performance and reliability. 177 181 - [Improved] Delayed JS execution now supports DOMContentLoaded.
Note: See TracChangeset
for help on using the changeset viewer.