Plugin Directory

Changeset 2008476


Ignore:
Timestamp:
01/08/2019 03:06:55 PM (7 years ago)
Author:
geekysoft
Message:

Tagging 2.2.3 release

Location:
cache-control
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cache-control/tags/2.2.3/cache-control.php

    r1846417 r2008476  
    22/*
    33Plugin Name: Cache-Control
    4 Plugin URI:  https://www.ctrl.blog/?s=%22Cache-Control%20plugin%20for%20WordPress%22
     4Plugin URI:  https://www.ctrl.blog/search?s=%22Cache-Control%20plugin%20for%20WordPress%22
    55Description: Configurable HTTP Cache-Control headers for webpages generated by WordPress.
    6 Version:     2.2.2
     6Version:     2.2.3
    77Author:      Geeky Software
    8 Author URI:  https://www.geeky.software/
     8Author URI:  https://www.ctrl.blog/topic/wordpress
    99License:     GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    258258        $last_com = get_comments( 'post_id=' . get_the_ID() . '&number=1&include_unapproved=1&number=1&orderby=comment_date' );
    259259        if ( $last_com != NULL ) {
    260             $last_com = new DateTime( $last_com->comment_date );
     260            $last_com = new DateTime( $last_com[0]->comment_date );
    261261            $date_mod = max( array( $date_mod, $last_com ) );
    262262        }
     
    285285    if ( !$noncacheable                             &&
    286286         isset($wp_query)                           &&
    287          isset($wp_query->posts)                    && 
     287         isset($wp_query->posts)                    &&
    288288         count($wp_query->posts) >= 1               &&
    289289         !empty($wp_query->posts[0]->post_password) &&
  • cache-control/tags/2.2.3/readme.txt

    r1846417 r2008476  
    33Tags: caching, performance, cache-control, http
    44Requires at least: 4.4.1
    5 Tested up to: 4.9.4
    6 Stable tag: 2.2.2
     5Tested up to: 5.0.2
     6Stable tag: 2.2.3
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7777== Changelog ==
    7878
    79 = 2.2.2 =
     79= 2.2.3 =
    8080
    8181* Resolved an issue when calculating the time since the last comment.
  • cache-control/trunk/cache-control.php

    r1846417 r2008476  
    22/*
    33Plugin Name: Cache-Control
    4 Plugin URI:  https://www.ctrl.blog/?s=%22Cache-Control%20plugin%20for%20WordPress%22
     4Plugin URI:  https://www.ctrl.blog/search?s=%22Cache-Control%20plugin%20for%20WordPress%22
    55Description: Configurable HTTP Cache-Control headers for webpages generated by WordPress.
    6 Version:     2.2.2
     6Version:     2.2.3
    77Author:      Geeky Software
    8 Author URI:  https://www.geeky.software/
     8Author URI:  https://www.ctrl.blog/topic/wordpress
    99License:     GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    258258        $last_com = get_comments( 'post_id=' . get_the_ID() . '&number=1&include_unapproved=1&number=1&orderby=comment_date' );
    259259        if ( $last_com != NULL ) {
    260             $last_com = new DateTime( $last_com->comment_date );
     260            $last_com = new DateTime( $last_com[0]->comment_date );
    261261            $date_mod = max( array( $date_mod, $last_com ) );
    262262        }
     
    285285    if ( !$noncacheable                             &&
    286286         isset($wp_query)                           &&
    287          isset($wp_query->posts)                    && 
     287         isset($wp_query->posts)                    &&
    288288         count($wp_query->posts) >= 1               &&
    289289         !empty($wp_query->posts[0]->post_password) &&
  • cache-control/trunk/readme.txt

    r1846417 r2008476  
    33Tags: caching, performance, cache-control, http
    44Requires at least: 4.4.1
    5 Tested up to: 4.9.4
    6 Stable tag: 2.2.2
     5Tested up to: 5.0.2
     6Stable tag: 2.2.3
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7777== Changelog ==
    7878
    79 = 2.2.2 =
     79= 2.2.3 =
    8080
    8181* Resolved an issue when calculating the time since the last comment.
Note: See TracChangeset for help on using the changeset viewer.