Plugin Directory

Changeset 1234467


Ignore:
Timestamp:
08/31/2015 08:17:19 AM (11 years ago)
Author:
hitoy
Message:

update 3.2.3

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

Legend:

Unmodified
Added
Removed
  • super-static-cache/trunk/languages/super_static_cache-zh_CN.po

    r1232755 r1234467  
    33"Project-Id-Version: super static cache 3.0\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2015-08-28 10:45+0800\n"
    6 "PO-Revision-Date: 2015-08-28 10:45+0800\n"
     5"POT-Creation-Date: 2015-08-31 16:14+0800\n"
     6"PO-Revision-Date: 2015-08-31 16:15+0800\n"
    77"Last-Translator: hitoy <vip@hitoy.org>\n"
    88"Language-Team: hitoy <vip@hitoy.org>\n"
     
    187187
    188188#: options-general.php:38
    189 msgid "Archives"
    190 msgstr "归档页"
    191 
    192 #: options-general.php:41
     189msgid "Author"
     190msgstr "作者页"
     191
     192#: options-general.php:39
     193msgid "Date"
     194msgstr "时间页"
     195
     196#: options-general.php:40
     197msgid "Attachment"
     198msgstr "附件页"
     199
     200#: options-general.php:43
    193201msgid "Update »"
    194202msgstr "升级 »"
     
    286294msgstr "捐赠"
    287295
     296#~ msgid "Archives"
     297#~ msgstr "归档页"
     298
    288299#~ msgid "Please Enter the title or id of a post, separate tags with commas"
    289300#~ msgstr "请输入文章标题或者ID,多个内容用逗号分隔"
  • super-static-cache/trunk/options-general.php

    r1220611 r1234467  
    3636                <div><label><?php _e('Category','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="category" <?php theselected('super_static_cache_excet','category');?>></div>
    3737                <div><label><?php _e('Tag','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="tag" <?php theselected('super_static_cache_excet','tag');?>></div>
    38                 <div><label><?php _e('Archives','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="archives" <?php theselected('super_static_cache_excet','archives');?>></div>
     38                <div><label><?php _e('Author','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="author" <?php theselected('super_static_cache_excet','author');?>></div>
     39                <div><label><?php _e('Date','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="date" <?php theselected('super_static_cache_excet','date');?>></div>
     40                <div><label><?php _e('Attachment','super_static_cache');?></label><input type="checkbox" name="super_static_cache_excet[]" value="attachment" <?php theselected('super_static_cache_excet','attachment');?>></div>
    3941            </div>
    4042        </div>
  • super-static-cache/trunk/readme.txt

    r1232744 r1234467  
    55Requires at least: 3.0.1
    66Tested up to: 4.3
    7 Stable tag: 3.2.2
     7Stable tag: 3.2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727
    2828== Upgrade Notice ==
     29= 3.2.3 =
     30* Except Cache Function fixed
     31
     32
    2933= 3.2.2 =
    3034* Bug Fixed
  • super-static-cache/trunk/super-static-cache.php

    r1232781 r1234467  
    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.2.2
     6Version: 3.2.3
    77Author: Hito
    88Author URI: https://www.hitoy.org/
     
    126126    private $htmlcontent;
    127127    //不缓存的页面,默认
    128     private $nocachepage = array('admin','404','search','preview','trackback');
     128    private $nocachepage = array('admin','404','search','preview','trackback','feed');
    129129
    130130    //是否是严格模式缓存,默认开启
     
    334334        add_option("super_static_cache_mode","close");
    335335        add_option("super_static_cache_strict",false);
    336         add_option("super_static_cache_excet","author,feed");
     336        add_option("super_static_cache_excet","author,date,attachment");
    337337        add_option("update_cache_action","publish_post,post_updated,trashed_post,publish_page");
    338338
Note: See TracChangeset for help on using the changeset viewer.