Plugin Directory

Changeset 2726150


Ignore:
Timestamp:
05/18/2022 02:31:32 PM (4 years ago)
Author:
Lugat
Message:

removed notices in admin and front.

Location:
jinx-fast-cache/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • jinx-fast-cache/trunk/index.php

    r2683664 r2726150  
    55   * Plugin URI: https://wordpress.org/plugins/jixn-fast-cache/
    66   * Description: Blazing fast full page cache.
    7    * Version: 0.3.5
     7   * Version: 0.3.6
    88   * Author: SquareFlower Websolutions (Lukas Rydygel) <hallo@squareflower.de>
    99   * Author URI: http://squareflower.de
  • jinx-fast-cache/trunk/readme.txt

    r2683664 r2726150  
    33Tags: cache, fullpage, pagecache, filecache, rewrite, htaccess
    44Requires at least: 5.0
    5 Tested up to: 5.9.0
     5Tested up to: 5.9.3
    66Requires PHP: 7.0
    7 Stable tag: 0.3.5
     7Stable tag: 0.3.6
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • jinx-fast-cache/trunk/src/Admin.php

    r2683664 r2726150  
    435435     */
    436436    public static function execute(string $action)
    437     {
    438      
    439       list($action, $element, $type, $id) = explode('/', $action);
     437    {     
     438     
     439      list($action, $element, $type, $id) = explode('/', $action.'///');
    440440     
    441441      $method = 'action'.ucfirst($action);
  • jinx-fast-cache/trunk/src/Front.php

    r2676361 r2726150  
    130130    public static function capture()
    131131    {
    132            
     132                 
    133133      // check if the request should be cached
    134134      $cache = apply_filters('jinx_fast_cache', true);
     
    136136       
    137137        // start output buffer
    138         ob_start(function($html) use($wp) {
     138        ob_start(function($html) {
    139139         
    140140          // modify the output for the cache
Note: See TracChangeset for help on using the changeset viewer.