Plugin Directory

Changeset 1439754 for simple-cache


Ignore:
Timestamp:
06/20/2016 01:18:19 AM (10 years ago)
Author:
tlovett1
Message:

Version 1.5.2

Location:
simple-cache
Files:
29 added
3 edited

Legend:

Unmodified
Added
Removed
  • simple-cache/trunk/inc/dropins/file-based-page-cache.php

    r1427256 r1439754  
    101101    }
    102102
    103     // Don't cache search or 404
    104     if ( is_404() || is_search() ) {
     103    // Don't cache search, 404, or password protected
     104    if ( is_404() || is_search() || post_password_required() ) {
    105105        return $buffer;
    106106    }
  • simple-cache/trunk/readme.txt

    r1427256 r1439754  
    3737
    3838== Changelog ==
     39
     40= 1.5.2 =
     41* Fix password protected posts
    3942
    4043= 1.5.1 =
  • simple-cache/trunk/simple-cache.php

    r1427256 r1439754  
    55 * Description: A simple caching plugin that just works.
    66 * Author: Taylor Lovett
    7  * Version: 1.5.1
     7 * Version: 1.5.2
    88 * Text Domain: simple-cache
    99 * Domain Path: /languages
     
    1313defined( 'ABSPATH' ) || exit;
    1414
    15 define( 'SC_VERSION', '1.5.1' );
     15define( 'SC_VERSION', '1.5.2' );
    1616
    1717require_once dirname( __FILE__ ) . '/inc/functions.php';
Note: See TracChangeset for help on using the changeset viewer.