Plugin Directory

Changeset 2066599


Ignore:
Timestamp:
04/10/2019 01:55:06 PM (7 years ago)
Author:
PhilMeadows
Message:

Wee bug fix

Location:
wp-roids/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-roids/trunk/CHANGELOG.md

    r2002487 r2066599  
     1= v3.1.1 =
     2
     3- **Fixed:** Bug caused by variable named incorrectly
     4
    15= v3.1.0 =
    26
  • wp-roids/trunk/readme.txt

    r2002487 r2066599  
    11=== WP Roids ===
    22
    3 Stable tag: 3.1.0
     3Stable tag: 3.1.1
    44Requires at least: 4.2
    5 Tested up to: 5.0.2
     5Tested up to: 5.1.1
    66Requires PHP: 5.4.0
    77
    88License: GPLv3 or later
    9 License URI: http://www.gnu.org/licenses/gpl-3.0-standalone.html
     9License URI: https://www.gnu.org/licenses/gpl-3.0-standalone.html
    1010
    1111Contributors: philmeadows
     
    1313Tags: cache,caching,minify,page speed,optimize,performance,compression
    1414
    15 Best caching, minification and compression for WordPress®. Tested FASTER than: WP Super Cache, W3 Total Cache, WP Fastest Cache, & more!
     15Best caching, minification and compression for WordPress. Tested FASTER than: WP Super Cache, W3 Total Cache, WP Fastest Cache, & more!
    1616
    1717== Description ==
     
    189189== License ==
    190190
    191 Copyright: © 2017 [Philip K. Meadows](https://philmeadows.com) (coded in Great Britain)
    192 
    193 Released under the terms of the [GNU General Public License](http://www.gnu.org/licenses/gpl-3.0-standalone.html)
     191Copyright: © 2019 [Philip K. Meadows](https://philmeadows.com) (coded in Great Britain)
     192
     193Released under the terms of the [GNU General Public License](https://www.gnu.org/licenses/gpl-3.0-standalone.html)
    194194
    195195= Credits / Additional Acknowledgments =
    196196
    197197* Software designed for WordPress®
    198     - GPL License <http://codex.wordpress.org/GPL>
    199     - WordPress® <http://wordpress.org>
     198    - GPL License <https://codex.wordpress.org/GPL>
     199    - WordPress® <https://wordpress.org>
    200200* Photograph of Lance Armstrong
    201     - Source: <http://www.newsactivist.com/en/articles/604-103-lf/lance-armstrong-cheater-0>
    202     - Used without permission, but "Fair Use" for the purposes of caricature and parody
     201    - Source: <http://newsactivist.com/en/articles/604-103-lf/lance-armstrong-cheater-0>
     202    - Used without permission, but "Fair Use" for the purposes of caricature, parody and satire
    203203
    204204== Upgrade Notice ==
    205205
     206= v3.1.1 =
     207
     208Minor bug fix affecting some users
     209
    206210= v3.1.0 =
    207211
  • wp-roids/trunk/wp-roids.php

    r2002487 r2066599  
    33Plugin Name: WP Roids
    44Description: Fast AF Caching for WordPress!
    5 Version: 3.1.0
     5Version: 3.1.1
    66Author: Philip K. Meadows
    77Author URI: https://philmeadows.com
     
    333333        private function strposa( $haystack, $needle, $offset = 0 )
    334334        {
    335             foreach( $needle as $query )
     335            foreach( $needle as $lookup )
    336336            {
    337                 if( strpos( $haystack, $query, $offset ) !== FALSE )
     337                if( strpos( $haystack, $lookup, $offset ) !== FALSE )
    338338                {
    339339                    return TRUE; // stop on first true result
     
    712712                    && ! post_password_required()
    713713                    && ( is_singular() || is_archive() )
    714                     && ( ! defined( 'DONOTCACHEPAGE' ) && intval( DONOTCACHEPAGE ) !== 1 )
     714                    && ( defined( 'DONOTCACHEPAGE' ) && intval( DONOTCACHEPAGE ) !== 1 )
    715715                    && ! is_404()
    716716                    && get_post_status( $post->ID ) === 'publish'
Note: See TracChangeset for help on using the changeset viewer.