Changeset 2988654
- Timestamp:
- 11/03/2023 06:06:24 PM (2 years ago)
- Location:
- cynderhost/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (1 diff)
-
cynderhost.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cynderhost/trunk/README.txt
r2988398 r2988654 32 32 33 33 == Changelog == 34 35 = 2.0.3 = 36 * Fix prompting bug 34 37 35 38 = 2.0.2 = -
cynderhost/trunk/cynderhost.php
r2988398 r2988654 9 9 * Plugin URI: https://cynderhost.com 10 10 * Description: Provides an easy interface to clear the CynderHost CDN cache, both automatically and programmatically. 11 * Version: 2.0. 211 * Version: 2.0.3 12 12 * Author: CynderHost 13 13 * Author URI: https://profiles.wordpress.org/cynderhost/ … … 24 24 25 25 //Define version 26 define('CYNDERHOST_VERSION', '2.0. 2');26 define('CYNDERHOST_VERSION', '2.0.3'); 27 27 28 28 … … 496 496 */ 497 497 function prompt_option_save($name){ 498 // if (strpos($name, "_last_") === false && strpos($name, "cron") === false && strpos($name, "transient") === false && strpos($name, "notice") === false && strpos($name, "message") === false && strpos($name, "_lock") === false) { 499 if (strpos($name, "option") !== false || strpos($name, "setting") !== false || strpos($name, "woocommerce_") !== false || strpos($name, "wpseo") !== false){ 498 if (strpos($name, "option") !== false || strpos($name, "setting") !== false || strpos($name, "woocommerce_") === 0 || strpos($name, "wpseo") !== false){ 500 499 $url = add_query_arg("cynderhost_purgecache", "true"); 501 500 $url = add_query_arg("nonce", wp_create_nonce('cynderhost_purgecache') , $url); … … 503 502 } 504 503 } 504 505 505 506 506 /**
Note: See TracChangeset
for help on using the changeset viewer.