Plugin Directory

Changeset 1979232


Ignore:
Timestamp:
11/23/2018 07:12:09 AM (7 years ago)
Author:
Jayce53
Message:

Version 1.1.1690

Location:
easyindex/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • easyindex/trunk/easyindex.php

    r1955542 r1979232  
    55Description: WordPress indexes made easy.
    66Author: Jayce53
    7 Version: 1.1.1689
     7Version: 1.1.1690
    88Author URI: https://easyindexplugin.com
    99License: GPLv2 or later
  • easyindex/trunk/lib/EasyIndex.php

    r1955542 r1979232  
    7777         * 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
    7878         */
    79         self::$pluginVersion   = "1.1.1689";
     79        self::$pluginVersion   = "1.1.1690";
    8080        self::$pluginName      = "easyindex/easyindex.php";
    8181        self::$EasyIndexDir = trailingslashit(WP_PLUGIN_DIR) . "easyindex";
     
    675675        if ($this->isSecondaryIndex) {
    676676            add_filter('the_title', array($this, 'customiseTitle'), 100, 2);
     677            add_filter('wpseo_title', array($this, 'customiseTitle'), 100, 1);
    677678            $styleID = empty($_REQUEST['eistyle']) ? $indexData->secondary->ixStyleID : $_REQUEST['eistyle'];
    678679        } else {
     
    963964     */
    964965    function customiseTitle($title, $postID = null) {
    965         if ($postID == $this->indexID) {
     966        if ($postID == $this->indexID || is_null($postID)) {
    966967            $title = $this->index->customiseTitle($this->term);
    967968        }
  • easyindex/trunk/lib/EasyIndexDiagnostics.php

    r1955542 r1979232  
    3232
    3333    public $pluginName = 'easyindex';
    34     public $pluginVersion = '1.1.1689';
     34    public $pluginVersion = '1.1.1690';
    3535
    3636    public $pluginURL = '';
  • easyindex/trunk/lib/EasyIndexStyle.php

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

    r1955542 r1979232  
    55Requires at least: 3.9
    66Tested up to: 4.9.8
    7 Stable tag: 1.1.1689
     7Stable tag: 1.1.1690
    88
    99Wordpress indexes made easy! EasyIndex makes post indexes, recipe indexes, product indexes and more in just minutes. Easy to use, easy to customize.
     
    107107
    108108== Changelog ==
    109 = 1.1.1689 =
     109= 1.1.1690 =
     110Update: Set secondary index titles correctly when Yoast SEO plugin is present
     111
     112= 1.1 Build 1689 =
    110113Fix: Fix missing update code for "other plugin" content in previous update
    111114
Note: See TracChangeset for help on using the changeset viewer.