Plugin Directory

Changeset 2094227


Ignore:
Timestamp:
05/24/2019 03:31:58 AM (7 years ago)
Author:
Jayce53
Message:

Version 1.1.1697

Location:
easyindex/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • easyindex/trunk/easyindex.php

    r2092767 r2094227  
    55Description: WordPress indexes made easy.
    66Author: Jayce53
    7 Version: 1.1.1696
     7Version: 1.1.1697
    88Author URI: https://easyindexplugin.com
    99License: GPLv2 or later
  • easyindex/trunk/lib/EasyIndex.php

    r2092767 r2094227  
    8080         * The standard WP functions for getting the plugin's dir name and URL won't work if we symlink the latest version into the plugin directory like our test suite does
    8181         */
    82         self::$pluginVersion   = "1.1.1696";
     82        self::$pluginVersion   = "1.1.1697";
    8383        self::$pluginName      = "easyindex/easyindex.php";
    8484        self::$EasyIndexDir = trailingslashit(WP_PLUGIN_DIR) . "easyindex";
  • easyindex/trunk/lib/EasyIndexDiagnostics.php

    r2092767 r2094227  
    3232
    3333    public $pluginName = 'easyindex';
    34     public $pluginVersion = '1.1.1696';
     34    public $pluginVersion = '1.1.1697';
    3535
    3636    public $pluginURL = '';
  • easyindex/trunk/lib/EasyIndexIndex.php

    r2092767 r2094227  
    101101        }
    102102
    103 
     103        /**
     104         * We might use the WP object cache to prevent re-generating the index if "the_content" is called multiple times
     105         * We don't want this to be persistent, so make a non-persistent cache group
     106         */
     107        wp_cache_add_non_persistent_groups("easyindex");
    104108    }
    105109
     
    115119        $cachekey = "easyindexP" . $this->postID;
    116120
    117         $html = wp_cache_get($cachekey);
     121        $html = wp_cache_get($cachekey,"easyindex");
    118122        if ($html) {
    119123            return $html;
     
    634638
    635639        $cachekey = "easyindexS" . $this->postID;
    636         $html = wp_cache_get($cachekey);
     640        $html = wp_cache_get($cachekey,"easyindex");
    637641        if ($html) {
    638642            return $html;
  • easyindex/trunk/lib/EasyIndexStyle.php

    r2092767 r2094227  
    223223     */
    224224    public function getCSSUrl() {
    225         return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.1696";
     225        return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.1697";
    226226    }
    227227
  • easyindex/trunk/readme.txt

    r2092767 r2094227  
    55Requires at least: 3.9
    66Tested up to: 5.2.1
    7 Stable tag: 1.1.1696
     7Stable tag: 1.1.1697
    88
    99Wordpress indexes made easy! EasyIndex makes post indexes, recipe indexes, product indexes and more in just minutes. Easy to use, easy to customize.
     
    108108== Changelog ==
    109109
    110 = 1.1.1696 =
     110= 1.1.1697 =
     111Update: Fix to work with plugins that persist the WP object cache
     112
     113= 1.1 Build 1696 =
    111114Update: Tested with WordPress 5.2.1
    112115Update: Use WP object cache to prevent indexes being generated multiple times per page view
Note: See TracChangeset for help on using the changeset viewer.