Changeset 1979232
- Timestamp:
- 11/23/2018 07:12:09 AM (7 years ago)
- Location:
- easyindex/trunk
- Files:
-
- 5 edited
-
easyindex.php (modified) (1 diff)
-
lib/EasyIndex.php (modified) (3 diffs)
-
lib/EasyIndexDiagnostics.php (modified) (1 diff)
-
lib/EasyIndexStyle.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easyindex/trunk/easyindex.php
r1955542 r1979232 5 5 Description: WordPress indexes made easy. 6 6 Author: Jayce53 7 Version: 1.1.16 897 Version: 1.1.1690 8 8 Author URI: https://easyindexplugin.com 9 9 License: GPLv2 or later -
easyindex/trunk/lib/EasyIndex.php
r1955542 r1979232 77 77 * 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 78 78 */ 79 self::$pluginVersion = "1.1.16 89";79 self::$pluginVersion = "1.1.1690"; 80 80 self::$pluginName = "easyindex/easyindex.php"; 81 81 self::$EasyIndexDir = trailingslashit(WP_PLUGIN_DIR) . "easyindex"; … … 675 675 if ($this->isSecondaryIndex) { 676 676 add_filter('the_title', array($this, 'customiseTitle'), 100, 2); 677 add_filter('wpseo_title', array($this, 'customiseTitle'), 100, 1); 677 678 $styleID = empty($_REQUEST['eistyle']) ? $indexData->secondary->ixStyleID : $_REQUEST['eistyle']; 678 679 } else { … … 963 964 */ 964 965 function customiseTitle($title, $postID = null) { 965 if ($postID == $this->indexID ) {966 if ($postID == $this->indexID || is_null($postID)) { 966 967 $title = $this->index->customiseTitle($this->term); 967 968 } -
easyindex/trunk/lib/EasyIndexDiagnostics.php
r1955542 r1979232 32 32 33 33 public $pluginName = 'easyindex'; 34 public $pluginVersion = '1.1.16 89';34 public $pluginVersion = '1.1.1690'; 35 35 36 36 public $pluginURL = ''; -
easyindex/trunk/lib/EasyIndexStyle.php
r1955542 r1979232 223 223 */ 224 224 public function getCSSUrl() { 225 return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.16 89";225 return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.1690"; 226 226 } 227 227 -
easyindex/trunk/readme.txt
r1955542 r1979232 5 5 Requires at least: 3.9 6 6 Tested up to: 4.9.8 7 Stable tag: 1.1.16 897 Stable tag: 1.1.1690 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. … … 107 107 108 108 == Changelog == 109 = 1.1.1689 = 109 = 1.1.1690 = 110 Update: Set secondary index titles correctly when Yoast SEO plugin is present 111 112 = 1.1 Build 1689 = 110 113 Fix: Fix missing update code for "other plugin" content in previous update 111 114
Note: See TracChangeset
for help on using the changeset viewer.