Changeset 2094227
- Timestamp:
- 05/24/2019 03:31:58 AM (7 years ago)
- Location:
- easyindex/trunk
- Files:
-
- 6 edited
-
easyindex.php (modified) (1 diff)
-
lib/EasyIndex.php (modified) (1 diff)
-
lib/EasyIndexDiagnostics.php (modified) (1 diff)
-
lib/EasyIndexIndex.php (modified) (3 diffs)
-
lib/EasyIndexStyle.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easyindex/trunk/easyindex.php
r2092767 r2094227 5 5 Description: WordPress indexes made easy. 6 6 Author: Jayce53 7 Version: 1.1.169 67 Version: 1.1.1697 8 8 Author URI: https://easyindexplugin.com 9 9 License: GPLv2 or later -
easyindex/trunk/lib/EasyIndex.php
r2092767 r2094227 80 80 * 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 81 81 */ 82 self::$pluginVersion = "1.1.169 6";82 self::$pluginVersion = "1.1.1697"; 83 83 self::$pluginName = "easyindex/easyindex.php"; 84 84 self::$EasyIndexDir = trailingslashit(WP_PLUGIN_DIR) . "easyindex"; -
easyindex/trunk/lib/EasyIndexDiagnostics.php
r2092767 r2094227 32 32 33 33 public $pluginName = 'easyindex'; 34 public $pluginVersion = '1.1.169 6';34 public $pluginVersion = '1.1.1697'; 35 35 36 36 public $pluginURL = ''; -
easyindex/trunk/lib/EasyIndexIndex.php
r2092767 r2094227 101 101 } 102 102 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"); 104 108 } 105 109 … … 115 119 $cachekey = "easyindexP" . $this->postID; 116 120 117 $html = wp_cache_get($cachekey );121 $html = wp_cache_get($cachekey,"easyindex"); 118 122 if ($html) { 119 123 return $html; … … 634 638 635 639 $cachekey = "easyindexS" . $this->postID; 636 $html = wp_cache_get($cachekey );640 $html = wp_cache_get($cachekey,"easyindex"); 637 641 if ($html) { 638 642 return $html; -
easyindex/trunk/lib/EasyIndexStyle.php
r2092767 r2094227 223 223 */ 224 224 public function getCSSUrl() { 225 return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.169 6";225 return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.1697"; 226 226 } 227 227 -
easyindex/trunk/readme.txt
r2092767 r2094227 5 5 Requires at least: 3.9 6 6 Tested up to: 5.2.1 7 Stable tag: 1.1.169 67 Stable tag: 1.1.1697 8 8 9 9 Wordpress indexes made easy! EasyIndex makes post indexes, recipe indexes, product indexes and more in just minutes. Easy to use, easy to customize. … … 108 108 == Changelog == 109 109 110 = 1.1.1696 = 110 = 1.1.1697 = 111 Update: Fix to work with plugins that persist the WP object cache 112 113 = 1.1 Build 1696 = 111 114 Update: Tested with WordPress 5.2.1 112 115 Update: Use WP object cache to prevent indexes being generated multiple times per page view
Note: See TracChangeset
for help on using the changeset viewer.