Changeset 2066599
- Timestamp:
- 04/10/2019 01:55:06 PM (7 years ago)
- Location:
- wp-roids/trunk
- Files:
-
- 3 edited
-
CHANGELOG.md (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-roids.php (modified) (3 diffs)
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 1 5 = v3.1.0 = 2 6 -
wp-roids/trunk/readme.txt
r2002487 r2066599 1 1 === WP Roids === 2 2 3 Stable tag: 3.1. 03 Stable tag: 3.1.1 4 4 Requires at least: 4.2 5 Tested up to: 5. 0.25 Tested up to: 5.1.1 6 6 Requires PHP: 5.4.0 7 7 8 8 License: GPLv3 or later 9 License URI: http ://www.gnu.org/licenses/gpl-3.0-standalone.html9 License URI: https://www.gnu.org/licenses/gpl-3.0-standalone.html 10 10 11 11 Contributors: philmeadows … … 13 13 Tags: cache,caching,minify,page speed,optimize,performance,compression 14 14 15 Best caching, minification and compression for WordPress ®. Tested FASTER than: WP Super Cache, W3 Total Cache, WP Fastest Cache, & more!15 Best caching, minification and compression for WordPress. Tested FASTER than: WP Super Cache, W3 Total Cache, WP Fastest Cache, & more! 16 16 17 17 == Description == … … 189 189 == License == 190 190 191 Copyright: © 201 7[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)191 Copyright: © 2019 [Philip K. Meadows](https://philmeadows.com) (coded in Great Britain) 192 193 Released under the terms of the [GNU General Public License](https://www.gnu.org/licenses/gpl-3.0-standalone.html) 194 194 195 195 = Credits / Additional Acknowledgments = 196 196 197 197 * 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> 200 200 * 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 parody201 - 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 203 203 204 204 == Upgrade Notice == 205 205 206 = v3.1.1 = 207 208 Minor bug fix affecting some users 209 206 210 = v3.1.0 = 207 211 -
wp-roids/trunk/wp-roids.php
r2002487 r2066599 3 3 Plugin Name: WP Roids 4 4 Description: Fast AF Caching for WordPress! 5 Version: 3.1. 05 Version: 3.1.1 6 6 Author: Philip K. Meadows 7 7 Author URI: https://philmeadows.com … … 333 333 private function strposa( $haystack, $needle, $offset = 0 ) 334 334 { 335 foreach( $needle as $ query)335 foreach( $needle as $lookup ) 336 336 { 337 if( strpos( $haystack, $ query, $offset ) !== FALSE )337 if( strpos( $haystack, $lookup, $offset ) !== FALSE ) 338 338 { 339 339 return TRUE; // stop on first true result … … 712 712 && ! post_password_required() 713 713 && ( is_singular() || is_archive() ) 714 && ( !defined( 'DONOTCACHEPAGE' ) && intval( DONOTCACHEPAGE ) !== 1 )714 && ( defined( 'DONOTCACHEPAGE' ) && intval( DONOTCACHEPAGE ) !== 1 ) 715 715 && ! is_404() 716 716 && get_post_status( $post->ID ) === 'publish'
Note: See TracChangeset
for help on using the changeset viewer.