Plugin Directory

Changeset 3001821


Ignore:
Timestamp:
11/26/2023 02:40:32 PM (2 years ago)
Author:
solaito
Message:

Version up 1.0.4

Location:
footnote-drawer
Files:
2 edited
11 copied

Legend:

Unmodified
Added
Removed
  • footnote-drawer/tags/1.0.4/footnote-drawer.php

    r2823704 r3001821  
    55Plugin URI: https://github.com/solaito/footnote-drawer
    66Description: View Footnotes in the drawer.
    7 Version: 1.0.3
     7Version: 1.0.4
    88Author: Tonica, LLC.
    99Author URI: https://tonica.llc/
     
    108108    private function footnotes_word($options)
    109109    {
    110         $word = $options[Footnote_Drawer_Options_Page::IDS['WORDING_FOOTNOTES']];
    111         $default = 'Footnotes';
    112         return isset($word) ?
    113             $word : __($default, FOOTNOTE_DRAWER_TEXT_DOMAIN);
     110        $word = __('Footnotes', FOOTNOTE_DRAWER_TEXT_DOMAIN);
     111        if ($options !== false) {
     112            $user_word = $options[Footnote_Drawer_Options_Page::IDS['WORDING_FOOTNOTES']];
     113            if (!empty($user_word)) {
     114                $word = $user_word;
     115            }
     116        }
     117        return $word;
    114118    }
    115119}
  • footnote-drawer/tags/1.0.4/readme.txt

    r2823704 r3001821  
    44Tags: footnote, footnotes, cite, drawer
    55Requires at least: 5.7
    6 Tested up to: 6.1
     6Tested up to: 6.4
    77Requires PHP: 5.6
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4242== Changelog ==
    4343
     44= 1.0.4 =
     45* Bug fix.
     46* Tested up to WP 6.4.
     47
    4448= 1.0.3 =
    4549* Bug fix.
  • footnote-drawer/trunk/footnote-drawer.php

    r2823704 r3001821  
    55Plugin URI: https://github.com/solaito/footnote-drawer
    66Description: View Footnotes in the drawer.
    7 Version: 1.0.3
     7Version: 1.0.4
    88Author: Tonica, LLC.
    99Author URI: https://tonica.llc/
     
    108108    private function footnotes_word($options)
    109109    {
    110         $word = $options[Footnote_Drawer_Options_Page::IDS['WORDING_FOOTNOTES']];
    111         $default = 'Footnotes';
    112         return isset($word) ?
    113             $word : __($default, FOOTNOTE_DRAWER_TEXT_DOMAIN);
     110        $word = __('Footnotes', FOOTNOTE_DRAWER_TEXT_DOMAIN);
     111        if ($options !== false) {
     112            $user_word = $options[Footnote_Drawer_Options_Page::IDS['WORDING_FOOTNOTES']];
     113            if (!empty($user_word)) {
     114                $word = $user_word;
     115            }
     116        }
     117        return $word;
    114118    }
    115119}
  • footnote-drawer/trunk/readme.txt

    r2823704 r3001821  
    44Tags: footnote, footnotes, cite, drawer
    55Requires at least: 5.7
    6 Tested up to: 6.1
     6Tested up to: 6.4
    77Requires PHP: 5.6
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4242== Changelog ==
    4343
     44= 1.0.4 =
     45* Bug fix.
     46* Tested up to WP 6.4.
     47
    4448= 1.0.3 =
    4549* Bug fix.
Note: See TracChangeset for help on using the changeset viewer.