Plugin Directory

Changeset 3010406


Ignore:
Timestamp:
12/15/2023 09:05:14 AM (2 years ago)
Author:
wpdelicious
Message:

Commiting changes to the trunk 1.5.7

Location:
delicious-recipes/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • delicious-recipes/trunk/changelog.txt

    r2993767 r3010406  
     11.5.7: 2023-12-15
     2- Fix: Undefined index when listing nutrition
     3
    141.5.6: 2023-11-10
    25- Compatibility Update for WP 6.4
  • delicious-recipes/trunk/delicious-recipes.php

    r2993767 r3010406  
    88 * Text Domain:     delicious-recipes
    99 * Domain Path:     /languages
    10  * Version:         1.5.6
     10 * Version:         1.5.7
    1111 * Requires at least: 5.1
    1212 * Tested up to: 6.4
  • delicious-recipes/trunk/languages/delicious-recipes.po

    r2993767 r3010406  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: WP Delicious 1.5.6\n"
     3"Project-Id-Version: WP Delicious 1.5.7\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dr\n"
    55"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    88"Content-Type: text/plain; charset=UTF-8\n"
    99"Content-Transfer-Encoding: 8bit\n"
    10 "POT-Creation-Date: 2023-11-10T09:02:10+00:00\n"
     10"POT-Creation-Date: 2023-12-15T08:56:39+00:00\n"
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1212"Language: \n"
  • delicious-recipes/trunk/languages/delicious-recipes.pot

    r2993767 r3010406  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Delicious 1.5.6\n"
     5"Project-Id-Version: WP Delicious 1.5.7\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dr\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-11-10T09:02:10+00:00\n"
     12"POT-Creation-Date: 2023-12-15T08:56:39+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.7.1\n"
  • delicious-recipes/trunk/readme.txt

    r2993767 r3010406  
    66Tested up to: 6.4
    77Requires PHP: 5.6
    8 Stable tag: 1.5.6
     8Stable tag: 1.5.7
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • delicious-recipes/trunk/templates/recipe/recipe-block/nutrition.php

    r2879522 r3010406  
    148148
    149149                    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 ] ) ) ) {
    151151                            continue;
    152152                        }
Note: See TracChangeset for help on using the changeset viewer.