Plugin Directory

Changeset 3334555


Ignore:
Timestamp:
07/26/2025 12:53:56 PM (8 months ago)
Author:
ollybach
Message:

3.19.7.4

  • Fix: allow a zero value in customer select values

26th July 2025

Location:
wppizza/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wppizza/trunk/classes/class.wppizza.order.php

    r3266537 r3334555  
    19801980                //for backwards compatibility with other plugins
    19811981                if(!isset($native_formfields[$key])){
    1982                     $customer_parameters[$key]['value'] = !empty($order['customer_ini'][$key]) ? $order['customer_ini'][$key] : '' ;
     1982                    $customer_parameters[$key]['value'] = isset($order['customer_ini'][$key]) ? $order['customer_ini'][$key] : '' ;
    19831983                }else{
    19841984                    $customer_parameters[$key]['value'] = isset($order['customer_ini'][$key]) && is_numeric($order['customer_ini'][$key]) && $order['customer_ini'][$key] >= 0 ? $order['customer_ini'][$key] : '' ;
  • wppizza/trunk/readme.txt

    r3331907 r3334555  
    88Requires at least: 3.3
    99Tested up to: 6.8
    10 Version: 3.19.7.3
    11 Stable tag: 3.19.7.3
     10Version: 3.19.7.4
     11Stable tag: 3.19.7.4
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    164164== Changelog ==
    165165
     1663.19.7.4 
     167* Fix: allow a zero value in customer select values 
     16826th July 2025 
     169
    1661703.19.7.3 
    167171* Fix: stricter type casting to avoid potential php 8.3+ issues 
  • wppizza/trunk/wppizza.php

    r3331907 r3334555  
    44#* Plugin URI: https://wordpress.org/extend/plugins/wppizza/
    55#* Description: A Restaurant Plugin (not only for Pizza)
    6 #* Version: 3.19.7.3
     6#* Version: 3.19.7.4
    77#* Requires PHP: 5.3
    88#* Author: ollybach
     
    5858***************************************************************/
    5959if(!defined('WPPIZZA_VERSION')){
    60     define('WPPIZZA_VERSION', '3.19.7.3');
     60    define('WPPIZZA_VERSION', '3.19.7.4');
    6161}
    6262if(!defined('WPPIZZA_VERSION_MAJOR')){
Note: See TracChangeset for help on using the changeset viewer.