Changeset 1896992
- Timestamp:
- 06/22/2018 10:26:32 AM (8 years ago)
- Location:
- wp-wallcreeper/trunk
- Files:
-
- 3 edited
-
advanced-cache.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wp-wallcreeper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-wallcreeper/trunk/advanced-cache.php
r1894560 r1896992 4 4 * High performance full page caching for Wordpress 5 5 * 6 * @version: 1. 06 * @version: 1.4 7 7 * @author: Alex Alouit <alex@alouit.fr> 8 8 */ … … 1085 1085 global $blog_id; 1086 1086 1087 if (function_exists('is_multisite') && is_multisite() && isset($blog_id)) 1088 return constant('WP_CONTENT_DIR') . DIRECTORY_SEPARATOR . 'blogs.dir' . DIRECTORY_SEPARATOR . $blog_id . DIRECTORY_SEPARATOR . 'wpwallcreeper.conf'; 1089 1090 return constant('WP_CONTENT_DIR') . DIRECTORY_SEPARATOR . 'wpwallcreeper.conf'; 1087 return constant('WP_CONTENT_DIR') . DIRECTORY_SEPARATOR . 'wpwallcreeper.' . $blog_id . '.conf'; 1091 1088 } 1092 1089 -
wp-wallcreeper/trunk/readme.txt
r1894560 r1896992 77 77 == Changelog == 78 78 79 = 1.3 = 80 * Fix header switch state 79 = 1.4 = 80 * Active new configuration 81 81 82 * Add serve gzip switch state 82 83 * Fix timezone (use built-in Wordpress function) -
wp-wallcreeper/trunk/wp-wallcreeper.php
r1894560 r1896992 4 4 * Plugin URI: alex.alouit.fr 5 5 * Description: High performance full page caching for Wordpress. 6 * Version: 1. 36 * Version: 1.4 7 7 * Author: Alex Alouit 8 8 * Author URI: alex.alouit.fr
Note: See TracChangeset
for help on using the changeset viewer.