Changeset 3334555
- Timestamp:
- 07/26/2025 12:53:56 PM (8 months ago)
- Location:
- wppizza/trunk
- Files:
-
- 3 edited
-
classes/class.wppizza.order.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wppizza.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wppizza/trunk/classes/class.wppizza.order.php
r3266537 r3334555 1980 1980 //for backwards compatibility with other plugins 1981 1981 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] : '' ; 1983 1983 }else{ 1984 1984 $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 8 8 Requires at least: 3.3 9 9 Tested up to: 6.8 10 Version: 3.19.7. 311 Stable tag: 3.19.7. 310 Version: 3.19.7.4 11 Stable tag: 3.19.7.4 12 12 License: GPLv2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 164 164 == Changelog == 165 165 166 3.19.7.4 167 * Fix: allow a zero value in customer select values 168 26th July 2025 169 166 170 3.19.7.3 167 171 * Fix: stricter type casting to avoid potential php 8.3+ issues -
wppizza/trunk/wppizza.php
r3331907 r3334555 4 4 #* Plugin URI: https://wordpress.org/extend/plugins/wppizza/ 5 5 #* Description: A Restaurant Plugin (not only for Pizza) 6 #* Version: 3.19.7. 36 #* Version: 3.19.7.4 7 7 #* Requires PHP: 5.3 8 8 #* Author: ollybach … … 58 58 ***************************************************************/ 59 59 if(!defined('WPPIZZA_VERSION')){ 60 define('WPPIZZA_VERSION', '3.19.7. 3');60 define('WPPIZZA_VERSION', '3.19.7.4'); 61 61 } 62 62 if(!defined('WPPIZZA_VERSION_MAJOR')){
Note: See TracChangeset
for help on using the changeset viewer.