Changeset 3001821
- Timestamp:
- 11/26/2023 02:40:32 PM (2 years ago)
- Location:
- footnote-drawer
- Files:
-
- 2 edited
- 11 copied
-
tags/1.0.4 (copied) (copied from footnote-drawer/trunk)
-
tags/1.0.4/LICENSE (copied) (copied from footnote-drawer/trunk/LICENSE)
-
tags/1.0.4/footnote-drawer.php (copied) (copied from footnote-drawer/trunk/footnote-drawer.php) (2 diffs)
-
tags/1.0.4/includes (copied) (copied from footnote-drawer/trunk/includes)
-
tags/1.0.4/includes/css/style.css (copied) (copied from footnote-drawer/trunk/includes/css/style.css)
-
tags/1.0.4/includes/css/style.css.map (copied) (copied from footnote-drawer/trunk/includes/css/style.css.map)
-
tags/1.0.4/includes/js/index.js (copied) (copied from footnote-drawer/trunk/includes/js/index.js)
-
tags/1.0.4/includes/options-page.php (copied) (copied from footnote-drawer/trunk/includes/options-page.php)
-
tags/1.0.4/includes/scss/style.scss (copied) (copied from footnote-drawer/trunk/includes/scss/style.scss)
-
tags/1.0.4/readme.txt (copied) (copied from footnote-drawer/trunk/readme.txt) (2 diffs)
-
tags/1.0.4/uninstall.php (copied) (copied from footnote-drawer/trunk/uninstall.php)
-
trunk/footnote-drawer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
footnote-drawer/tags/1.0.4/footnote-drawer.php
r2823704 r3001821 5 5 Plugin URI: https://github.com/solaito/footnote-drawer 6 6 Description: View Footnotes in the drawer. 7 Version: 1.0. 37 Version: 1.0.4 8 8 Author: Tonica, LLC. 9 9 Author URI: https://tonica.llc/ … … 108 108 private function footnotes_word($options) 109 109 { 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; 114 118 } 115 119 } -
footnote-drawer/tags/1.0.4/readme.txt
r2823704 r3001821 4 4 Tags: footnote, footnotes, cite, drawer 5 5 Requires at least: 5.7 6 Tested up to: 6. 16 Tested up to: 6.4 7 7 Requires PHP: 5.6 8 Stable tag: 1.0. 38 Stable tag: 1.0.4 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 42 42 == Changelog == 43 43 44 = 1.0.4 = 45 * Bug fix. 46 * Tested up to WP 6.4. 47 44 48 = 1.0.3 = 45 49 * Bug fix. -
footnote-drawer/trunk/footnote-drawer.php
r2823704 r3001821 5 5 Plugin URI: https://github.com/solaito/footnote-drawer 6 6 Description: View Footnotes in the drawer. 7 Version: 1.0. 37 Version: 1.0.4 8 8 Author: Tonica, LLC. 9 9 Author URI: https://tonica.llc/ … … 108 108 private function footnotes_word($options) 109 109 { 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; 114 118 } 115 119 } -
footnote-drawer/trunk/readme.txt
r2823704 r3001821 4 4 Tags: footnote, footnotes, cite, drawer 5 5 Requires at least: 5.7 6 Tested up to: 6. 16 Tested up to: 6.4 7 7 Requires PHP: 5.6 8 Stable tag: 1.0. 38 Stable tag: 1.0.4 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 42 42 == Changelog == 43 43 44 = 1.0.4 = 45 * Bug fix. 46 * Tested up to WP 6.4. 47 44 48 = 1.0.3 = 45 49 * Bug fix.
Note: See TracChangeset
for help on using the changeset viewer.