Changeset 1443825
- Timestamp:
- 06/27/2016 12:52:32 AM (10 years ago)
- Location:
- super-static-cache/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
super-static-cache-admin.php (modified) (2 diffs)
-
super-static-cache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
super-static-cache/trunk/readme.txt
r1443232 r1443825 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.5 7 Stable tag: 3.3. 17 Stable tag: 3.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 27 27 28 28 == Upgrade Notice == 29 = 3.3.2 = 30 * bug fixed 31 29 32 = 3.3.1 = 30 33 * Add functionality to specify a page that does not cache -
super-static-cache/trunk/super-static-cache-admin.php
r1398803 r1443825 98 98 99 99 $super_static_cache_excet_arr=$_POST['super_static_cache_excet']; 100 $super_static_cache_excet = implode( $super_static_cache_excet_arr,',');100 $super_static_cache_excet = implode(',',$super_static_cache_excet_arr); 101 101 update_option('super_static_cache_excet',$super_static_cache_excet); 102 102 … … 111 111 if(!empty($_POST['update_cache_action'])){ 112 112 $update_cache_action_arr=$_POST['update_cache_action']; 113 $update_cache_action=implode( $update_cache_action_arr,',');113 $update_cache_action=implode(',',$update_cache_action_arr); 114 114 update_option('update_cache_action',$update_cache_action); 115 115 } -
super-static-cache/trunk/super-static-cache.php
r1435154 r1443825 4 4 Plugin URI: https://www.hitoy.org/super-static-cache-for-wordperss.html 5 5 Description: Super Static Cache is an efficient WordPress caching engine which provides three cache mode. It can reduce the pressure of the database significantly that makes your website faster than ever. 6 Version: 3.3. 16 Version: 3.3.2 7 7 Author: Hito 8 8 Author URI: https://www.hitoy.org/
Note: See TracChangeset
for help on using the changeset viewer.