Plugin Directory

Changeset 2981574


Ignore:
Timestamp:
10/20/2023 09:13:06 AM (2 years ago)
Author:
alexalouit
Message:

tag 1.6

Location:
wp-wallcreeper
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-wallcreeper/tags/1.6/cache.php

    r2147004 r2981574  
    126126     */
    127127    public function __destruct() {
     128        $this->exit();
     129    }
     130
     131
     132    /*
     133     * exit
     134     *
     135     * @params: void
     136     * @return: void
     137     */
     138    public function exit() {
    128139        if (
    129140            is_null($this->volatile['response']['meta']['status']) &&
     
    177188        }
    178189
    179         exit;
     190        $this->exit();
    180191    }
    181192
     
    269280        }
    270281
    271         exit;
     282        $this->exit();
    272283    }
    273284
     
    940951        if (strtotime($_SERVER["HTTP_IF_MODIFIED_SINCE"]) > strtotime(explode(': ', $lastmodified)[1])) {
    941952            $this->volatile['response']['meta']['status'] = 304;
    942             exit;
     953            $this->exit();
    943954        }
    944955    }
  • wp-wallcreeper/tags/1.6/readme.txt

    r2147004 r2981574  
    44Tags: cache, caching, speed, performance
    55Requires at least: 3.0.1
    6 Tested up to: 4.7
     6Tested up to: 6.3.2
    77Requires PHP: 5.2.4
    8 Stable tag: 4.3
     8Stable tag: 6.3.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2121
    2222Supported:
    23  - PHP7
     23 - PHP8
    2424 - Wordpress MU
    2525 - direct gzip serving
     
    7777== Changelog ==
    7878
     79= 1.6 =
     80* Support PHP8
     81
    7982= 1.5.2 =
    8083* Fix configuration bug in MU (use new configuration file format)
  • wp-wallcreeper/tags/1.6/wp-wallcreeper.php

    r2147004 r2981574  
    44* Plugin URI: alex.alouit.fr
    55* Description: High performance full page caching for Wordpress.
    6 * Version: 1.5.2
     6* Version: 1.6
    77* Author: Alex Alouit
    88* Author URI: alex.alouit.fr
  • wp-wallcreeper/trunk/cache.php

    r2147004 r2981574  
    126126     */
    127127    public function __destruct() {
     128        $this->exit();
     129    }
     130
     131
     132    /*
     133     * exit
     134     *
     135     * @params: void
     136     * @return: void
     137     */
     138    public function exit() {
    128139        if (
    129140            is_null($this->volatile['response']['meta']['status']) &&
     
    177188        }
    178189
    179         exit;
     190        $this->exit();
    180191    }
    181192
     
    269280        }
    270281
    271         exit;
     282        $this->exit();
    272283    }
    273284
     
    940951        if (strtotime($_SERVER["HTTP_IF_MODIFIED_SINCE"]) > strtotime(explode(': ', $lastmodified)[1])) {
    941952            $this->volatile['response']['meta']['status'] = 304;
    942             exit;
     953            $this->exit();
    943954        }
    944955    }
  • wp-wallcreeper/trunk/readme.txt

    r2147004 r2981574  
    44Tags: cache, caching, speed, performance
    55Requires at least: 3.0.1
    6 Tested up to: 4.7
     6Tested up to: 6.3.2
    77Requires PHP: 5.2.4
    8 Stable tag: 4.3
     8Stable tag: 6.3.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2121
    2222Supported:
    23  - PHP7
     23 - PHP8
    2424 - Wordpress MU
    2525 - direct gzip serving
     
    7777== Changelog ==
    7878
     79= 1.6 =
     80* Support PHP8
     81
    7982= 1.5.2 =
    8083* Fix configuration bug in MU (use new configuration file format)
  • wp-wallcreeper/trunk/wp-wallcreeper.php

    r2147004 r2981574  
    44* Plugin URI: alex.alouit.fr
    55* Description: High performance full page caching for Wordpress.
    6 * Version: 1.5.2
     6* Version: 1.6
    77* Author: Alex Alouit
    88* Author URI: alex.alouit.fr
Note: See TracChangeset for help on using the changeset viewer.