Plugin Directory

Changeset 2016614


Ignore:
Timestamp:
01/22/2019 03:21:33 AM (7 years ago)
Author:
Jayce53
Message:

Version 1.1.1695

Location:
easyindex/trunk
Files:
25 edited

Legend:

Unmodified
Added
Removed
  • easyindex/trunk/easyindex.php

    r1996122 r2016614  
    55Description: WordPress indexes made easy.
    66Author: Jayce53
    7 Version: 1.1.1693
     7Version: 1.1.1695
    88Author URI: https://easyindexplugin.com
    99License: GPLv2 or later
     
    1111
    1212/*
    13 Copyright (c) 2010-2018 Box Hill LLC
     13Copyright (c) 2010-2019 Box Hill LLC
    1414
    1515This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndex.php

    r1996122 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
     
    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.1693";
     82        self::$pluginVersion   = "1.1.1695";
    8383        self::$pluginName      = "easyindex/easyindex.php";
    8484        self::$EasyIndexDir = trailingslashit(WP_PLUGIN_DIR) . "easyindex";
  • easyindex/trunk/lib/EasyIndexDOMDocument.php

    r1877526 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexData.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexDiagnostics.php

    r1996122 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
     
    3232
    3333    public $pluginName = 'easyindex';
    34     public $pluginVersion = '1.1.1693';
     34    public $pluginVersion = '1.1.1695';
    3535
    3636    public $pluginURL = '';
  • easyindex/trunk/lib/EasyIndexGenerateThumbs.php

    r1926521 r2016614  
    22
    33/*
    4 Copyright (c) 2010-2018 Box Hill LLC
     4Copyright (c) 2010-2019 Box Hill LLC
    55
    66This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexHelp.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexImage.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexImageGD.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexImageIMagick.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexIndex.php

    r1996122 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
     
    281281         * This will make posts appear in their primary category's index and ensure that categories aren't unexpectedly blank in the case
    282282         * where all the posts in the category have already appeared in another (non-primary) category
     283         *
     284         * We are only interested in gathering the "primary category" for a post when the post actually HAS a primary category,
     285         * and that category was one of the categories included in this index
    283286         */
    284287        $primaryCats = array();
    285         if ($this->indexData->indexTaxonomy == "category" && !$this->indexData->showDuplicates == "category" && EasyIndex::$yoastActive) {
     288        if ($this->indexData->indexTaxonomy == "category" && !$this->indexData->showDuplicates && EasyIndex::$yoastActive) {
    286289            $q = "SELECT post_id, meta_value FROM $wpdb->postmeta WHERE meta_key = '_yoast_wpseo_primary_category'";
    287290            $pcs = $wpdb->get_results($q);
    288291            foreach ($pcs as $pcat) {
    289                 $primaryCats[$pcat->post_id] = $pcat->meta_value;
     292                if (!empty($pcat->meta_value) && in_array($pcat->meta_value, $termTaxIDs)) {
     293                    $primaryCats[$pcat->post_id] = $pcat->meta_value;
     294                }
    290295            }
    291296        }
  • easyindex/trunk/lib/EasyIndexIndexEdit.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexLogger.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexSettings.php

    r1954825 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexStyle.php

    r1996122 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
     
    223223     */
    224224    public function getCSSUrl() {
    225         return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.1693";
     225        return EasyIndex::$EasyIndexUrl . "/styles/$this->id/style.css?v=1.1.1695";
    226226    }
    227227
  • easyindex/trunk/lib/EasyIndexStyleDefaults.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexStyles.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexTaxonomies.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexTemplate.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexThumbnail.php

    r1926521 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexThumbnailBase.php

    r1954825 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexTranslate.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/lib/EasyIndexWalker.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
  • easyindex/trunk/readme.txt

    r1996122 r2016614  
    44Tags: index, recipe index, product index, thumbnail gallery, post gallery, visual index, post index
    55Requires at least: 3.9
    6 Tested up to: 5.0.1
    7 Stable tag: 1.1.1693
     6Tested up to: 5.0.3
     7Stable tag: 1.1.1695
    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.1693 =
     110= 1.1.1695 =
     111Update: Tested with WordPress 5.0.3
     112Fix: Primary category selection was incorrectly removing some posts from indexes
     113
     114= 1.1 Build 1693 =
    111115Update: Tested with WordPress 5.0.1
    112116Update: Only select posts for their "primary" category index when indexing categories, Yoast SEO is present and "Display duplicates" is "No"
  • easyindex/trunk/uninstall.php

    r1860160 r2016614  
    11<?php
    22/*
    3 Copyright (c) 2010-2018 Box Hill LLC
     3Copyright (c) 2010-2019 Box Hill LLC
    44
    55This program is free software; you can redistribute it and/or
Note: See TracChangeset for help on using the changeset viewer.