Changeset 3010406
- Timestamp:
- 12/15/2023 09:05:14 AM (2 years ago)
- Location:
- delicious-recipes/trunk
- Files:
-
- 7 edited
-
changelog.txt (modified) (1 diff)
-
delicious-recipes.php (modified) (1 diff)
-
languages/delicious-recipes.mo (modified) (previous)
-
languages/delicious-recipes.po (modified) (2 diffs)
-
languages/delicious-recipes.pot (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
templates/recipe/recipe-block/nutrition.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
delicious-recipes/trunk/changelog.txt
r2993767 r3010406 1 1.5.7: 2023-12-15 2 - Fix: Undefined index when listing nutrition 3 1 4 1.5.6: 2023-11-10 2 5 - Compatibility Update for WP 6.4 -
delicious-recipes/trunk/delicious-recipes.php
r2993767 r3010406 8 8 * Text Domain: delicious-recipes 9 9 * Domain Path: /languages 10 * Version: 1.5. 610 * Version: 1.5.7 11 11 * Requires at least: 5.1 12 12 * Tested up to: 6.4 -
delicious-recipes/trunk/languages/delicious-recipes.po
r2993767 r3010406 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: WP Delicious 1.5. 6\n"3 "Project-Id-Version: WP Delicious 1.5.7\n" 4 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dr\n" 5 5 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 8 8 "Content-Type: text/plain; charset=UTF-8\n" 9 9 "Content-Transfer-Encoding: 8bit\n" 10 "POT-Creation-Date: 2023-1 1-10T09:02:10+00:00\n"10 "POT-Creation-Date: 2023-12-15T08:56:39+00:00\n" 11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 12 "Language: \n" -
delicious-recipes/trunk/languages/delicious-recipes.pot
r2993767 r3010406 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Delicious 1.5. 6\n"5 "Project-Id-Version: WP Delicious 1.5.7\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dr\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-1 1-10T09:02:10+00:00\n"12 "POT-Creation-Date: 2023-12-15T08:56:39+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.7.1\n" -
delicious-recipes/trunk/readme.txt
r2993767 r3010406 6 6 Tested up to: 6.4 7 7 Requires PHP: 5.6 8 Stable tag: 1.5. 68 Stable tag: 1.5.7 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html -
delicious-recipes/trunk/templates/recipe/recipe-block/nutrition.php
r2879522 r3010406 148 148 149 149 foreach ( $additionalNutritionElements as $additionalNutritionElement_key => $additionalNutritionElement_value ) { 150 if ( empty( trim( $nutri_additionalNutritionalElements[ $additionalNutritionElement_key ] ) ) ) {150 if ( ! isset( $nutri_additionalNutritionalElements[ $additionalNutritionElement_key ] ) || empty( trim( $nutri_additionalNutritionalElements[ $additionalNutritionElement_key ] ) ) ) { 151 151 continue; 152 152 }
Note: See TracChangeset
for help on using the changeset viewer.