Plugin Directory

Changeset 1443825


Ignore:
Timestamp:
06/27/2016 12:52:32 AM (10 years ago)
Author:
hitoy
Message:

bug fixed

Location:
super-static-cache/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • super-static-cache/trunk/readme.txt

    r1443232 r1443825  
    55Requires at least: 3.0.1
    66Tested up to: 4.5
    7 Stable tag: 3.3.1
     7Stable tag: 3.3.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727
    2828== Upgrade Notice ==
     29= 3.3.2 =
     30* bug fixed
     31
    2932= 3.3.1 =
    3033* Add functionality to specify a page that does not cache
  • super-static-cache/trunk/super-static-cache-admin.php

    r1398803 r1443825  
    9898
    9999                $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);
    101101                update_option('super_static_cache_excet',$super_static_cache_excet);
    102102
     
    111111        if(!empty($_POST['update_cache_action'])){
    112112                $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);
    114114                update_option('update_cache_action',$update_cache_action);
    115115        }
  • super-static-cache/trunk/super-static-cache.php

    r1435154 r1443825  
    44Plugin URI: https://www.hitoy.org/super-static-cache-for-wordperss.html
    55Description: 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.1
     6Version: 3.3.2
    77Author: Hito
    88Author URI: https://www.hitoy.org/
Note: See TracChangeset for help on using the changeset viewer.