Plugin Directory

Changeset 2014419


Ignore:
Timestamp:
01/17/2019 08:04:13 PM (7 years ago)
Author:
diddledan
Message:

version 2.1.3

Location:
a-z-listing
Files:
55 added
6 edited

Legend:

Unmodified
Added
Removed
  • a-z-listing/trunk/README.md

    r2011303 r2014419  
    77**Requires PHP:** 5.6 
    88**Tested up to:** 5.0 
    9 **Stable tag:** 2.1.2 
     9**Stable tag:** 2.1.3 
    1010**License:** GPLv2 or later 
    1111**License URI:** http://www.gnu.org/licenses/gpl-2.0.html 
     
    394394
    395395## Changelog ##
     396
     397### 2.1.3 ###
     398
     399#### Bug Fix ####
     400
     401* Fixed the bug reported by @ighosts22 where the letter for non-alphabetic items was not pointing at the list of items.
     402* Fixed incorrect behaviour discovered after adding tests to the automated testing to verify that I correctly fixed the above bug.
    396403
    397404### 2.1.2 ###
  • a-z-listing/trunk/a-z-listing.php

    r2011303 r2014419  
    88 * Text Domain:     a-z-listing
    99 * Domain Path:     /languages
    10  * Version:         2.1.2
     10 * Version:         2.1.3
    1111 *
    1212 * @package         A_Z_Listing
  • a-z-listing/trunk/changelog.md

    r2011303 r2014419  
    11# Full Changelog #
     2
     3## 2.1.3 ##
     4
     5### Bug Fix ###
     6
     7* Fixed the bug reported by @ighosts22 where the letter for non-alphabetic items was not pointing at the list of items.
     8* Fixed incorrect behaviour discovered after adding tests to the automated testing to verify that I correctly fixed the above bug.
    29
    310## 2.1.2 ##
  • a-z-listing/trunk/classes/class-a-z-listing.php

    r2003543 r2014419  
    546546
    547547            if ( array_key_exists( $this->unknown_letters, $indexed_items ) && ! empty( $indexed_items[ $this->unknown_letters ] ) ) {
    548                 $this->alphabet_chars[] = $this->unknown_letters;
     548                $this->alphabet_chars[]                   = $this->unknown_letters;
     549                $this->alphabet[ $this->unknown_letters ] = $this->unknown_letters;
    549550            }
    550551
     
    910911     */
    911912    public function get_the_letter_id() {
    912         return 'letter-' . $this->alphabet[ $this->alphabet_chars[ $this->current_letter_index - 1 ] ];
     913        $id = $this->alphabet[ $this->alphabet_chars[ $this->current_letter_index - 1 ] ];
     914        if ( $this->unknown_letters === $id ) {
     915            $id = '_';
     916        }
     917        return 'letter-' . $id;
    913918    }
    914919
  • a-z-listing/trunk/languages/a-z-listing.pot

    r2011303 r2014419  
    55"Project-Id-Version: A-Z Listing 2.1.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/a-z-listing\n"
    7 "POT-Creation-Date: 2019-01-12 22:53:58+00:00\n"
     7"POT-Creation-Date: 2019-01-16 14:13:02+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
  • a-z-listing/trunk/readme.txt

    r2011303 r2014419  
    77Requires PHP: 5.6
    88Tested up to: 5.0
    9 Stable tag: 2.1.2
     9Stable tag: 2.1.3
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    390390
    391391== Changelog ==
     392
     393= 2.1.3 =
     394
     395**Bug Fix**
     396
     397* Fixed the bug reported by @ighosts22 where the letter for non-alphabetic items was not pointing at the list of items.
     398* Fixed incorrect behaviour discovered after adding tests to the automated testing to verify that I correctly fixed the above bug.
    392399
    393400= 2.1.2 =
Note: See TracChangeset for help on using the changeset viewer.