Changeset 993552
- Timestamp:
- 09/19/2014 08:24:59 PM (11 years ago)
- Location:
- woocommerce-poor-guys-swiss-knife/trunk
- Files:
-
- 3 edited
-
classes/woocommerce-poor-guys-swiss-knife.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
woocommerce-poor-guys-swiss-knife.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-poor-guys-swiss-knife/trunk/classes/woocommerce-poor-guys-swiss-knife.php
r992827 r993552 3516 3516 3517 3517 case 'value': 3518 if (!empty($value) || $value === 0 ) $default = $value;3518 if (!empty($value) || $value === 0 || $value === '0') $default = $value; 3519 3519 break; 3520 3520 … … 3523 3523 break; 3524 3524 default: 3525 if (!empty($value) || $value === 0 )3525 if (!empty($value) || $value === 0 || $value === '0') 3526 3526 $custom_attributes[$key] = $value; 3527 3527 } … … 3702 3702 3703 3703 case 'value': 3704 if (!empty($value) || $value === 0 ) $default = $value;3704 if (!empty($value) || $value === 0 || $value === '0') $default = $value; 3705 3705 break; 3706 3706 3707 3707 default: 3708 if (!empty($value) || $value === 0 )3708 if (!empty($value) || $value === 0 || $value === '0') 3709 3709 $custom_attributes[$key] = $value; 3710 3710 } -
woocommerce-poor-guys-swiss-knife/trunk/readme.txt
r992827 r993552 5 5 Requires at least: Wordpress 3.1 and WooCommerce 2.0 6 6 Tested up to: 4.0 7 Stable tag: 1.9.8 57 Stable tag: 1.9.86 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 262 262 == Changelog == 263 263 264 = 1.9.86 = 265 266 * Bug fix for number input fields affected by the last fix. 267 264 268 = 1.9.85 = 265 269 -
woocommerce-poor-guys-swiss-knife/trunk/woocommerce-poor-guys-swiss-knife.php
r992827 r993552 8 8 * Author: Uli Hake 9 9 * Author URI: http://takebarcelona.com/authorship/uli-hake 10 * Version: 1.9.8 510 * Version: 1.9.86 11 11 * @package WordPress 12 12 * @subpackage WooCommerce Poor Guys Swiss Knife … … 121 121 //load into our global 122 122 $wcpgsk = new WCPGSK_Main( __FILE__ ); 123 $wcpgsk->version = '1.9.8 5';123 $wcpgsk->version = '1.9.86'; 124 124 $wcpgsk->wcpgsk_hook_woocommerce_filters(); 125 125
Note: See TracChangeset
for help on using the changeset viewer.