Changeset 2981574
- Timestamp:
- 10/20/2023 09:13:06 AM (2 years ago)
- Location:
- wp-wallcreeper
- Files:
-
- 6 edited
- 1 copied
-
tags/1.6 (copied) (copied from wp-wallcreeper/trunk)
-
tags/1.6/cache.php (modified) (4 diffs)
-
tags/1.6/readme.txt (modified) (3 diffs)
-
tags/1.6/wp-wallcreeper.php (modified) (1 diff)
-
trunk/cache.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-wallcreeper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-wallcreeper/tags/1.6/cache.php
r2147004 r2981574 126 126 */ 127 127 public function __destruct() { 128 $this->exit(); 129 } 130 131 132 /* 133 * exit 134 * 135 * @params: void 136 * @return: void 137 */ 138 public function exit() { 128 139 if ( 129 140 is_null($this->volatile['response']['meta']['status']) && … … 177 188 } 178 189 179 exit;190 $this->exit(); 180 191 } 181 192 … … 269 280 } 270 281 271 exit;282 $this->exit(); 272 283 } 273 284 … … 940 951 if (strtotime($_SERVER["HTTP_IF_MODIFIED_SINCE"]) > strtotime(explode(': ', $lastmodified)[1])) { 941 952 $this->volatile['response']['meta']['status'] = 304; 942 exit;953 $this->exit(); 943 954 } 944 955 } -
wp-wallcreeper/tags/1.6/readme.txt
r2147004 r2981574 4 4 Tags: cache, caching, speed, performance 5 5 Requires at least: 3.0.1 6 Tested up to: 4.76 Tested up to: 6.3.2 7 7 Requires PHP: 5.2.4 8 Stable tag: 4.38 Stable tag: 6.3.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 21 21 22 22 Supported: 23 - PHP 723 - PHP8 24 24 - Wordpress MU 25 25 - direct gzip serving … … 77 77 == Changelog == 78 78 79 = 1.6 = 80 * Support PHP8 81 79 82 = 1.5.2 = 80 83 * Fix configuration bug in MU (use new configuration file format) -
wp-wallcreeper/tags/1.6/wp-wallcreeper.php
r2147004 r2981574 4 4 * Plugin URI: alex.alouit.fr 5 5 * Description: High performance full page caching for Wordpress. 6 * Version: 1. 5.26 * Version: 1.6 7 7 * Author: Alex Alouit 8 8 * Author URI: alex.alouit.fr -
wp-wallcreeper/trunk/cache.php
r2147004 r2981574 126 126 */ 127 127 public function __destruct() { 128 $this->exit(); 129 } 130 131 132 /* 133 * exit 134 * 135 * @params: void 136 * @return: void 137 */ 138 public function exit() { 128 139 if ( 129 140 is_null($this->volatile['response']['meta']['status']) && … … 177 188 } 178 189 179 exit;190 $this->exit(); 180 191 } 181 192 … … 269 280 } 270 281 271 exit;282 $this->exit(); 272 283 } 273 284 … … 940 951 if (strtotime($_SERVER["HTTP_IF_MODIFIED_SINCE"]) > strtotime(explode(': ', $lastmodified)[1])) { 941 952 $this->volatile['response']['meta']['status'] = 304; 942 exit;953 $this->exit(); 943 954 } 944 955 } -
wp-wallcreeper/trunk/readme.txt
r2147004 r2981574 4 4 Tags: cache, caching, speed, performance 5 5 Requires at least: 3.0.1 6 Tested up to: 4.76 Tested up to: 6.3.2 7 7 Requires PHP: 5.2.4 8 Stable tag: 4.38 Stable tag: 6.3.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 21 21 22 22 Supported: 23 - PHP 723 - PHP8 24 24 - Wordpress MU 25 25 - direct gzip serving … … 77 77 == Changelog == 78 78 79 = 1.6 = 80 * Support PHP8 81 79 82 = 1.5.2 = 80 83 * Fix configuration bug in MU (use new configuration file format) -
wp-wallcreeper/trunk/wp-wallcreeper.php
r2147004 r2981574 4 4 * Plugin URI: alex.alouit.fr 5 5 * Description: High performance full page caching for Wordpress. 6 * Version: 1. 5.26 * Version: 1.6 7 7 * Author: Alex Alouit 8 8 * Author URI: alex.alouit.fr
Note: See TracChangeset
for help on using the changeset viewer.