Plugin Directory

Changeset 2726594


Ignore:
Timestamp:
05/19/2022 07:46:47 AM (4 years ago)
Author:
Lugat
Message:

fixed bug in action executer when no parameter are given.

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

Legend:

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

    r2726156 r2726594  
    55   * Plugin URI: https://wordpress.org/plugins/jixn-fast-cache/
    66   * Description: Blazing fast full page cache.
    7    * Version: 0.3.7
     7   * Version: 0.3.8
    88   * Author: SquareFlower Websolutions (Lukas Rydygel) <hallo@squareflower.de>
    99   * Author URI: http://squareflower.de
  • jinx-fast-cache/trunk/src/Admin.php

    r2726156 r2726594  
    439439    {     
    440440     
    441       list($action, $element, $type, $id) = explode('/', $action.'///');
     441      list($action, $element, $type, $id) = array_merge(explode('/', $action), array_fill(0, 3, null));
    442442     
    443443      $method = 'action'.ucfirst($action);
Note: See TracChangeset for help on using the changeset viewer.