Changeset 1708995
- Timestamp:
- 08/05/2017 11:01:36 PM (9 years ago)
- Location:
- woocommerce-basic-ordernumbers
- Files:
-
- 3 edited
- 14 copied
-
tags/1.4.2 (copied) (copied from woocommerce-basic-ordernumbers/trunk)
-
tags/1.4.2/assets/css/opentools-updatecheck.css (copied) (copied from woocommerce-basic-ordernumbers/trunk/assets/css/opentools-updatecheck.css)
-
tags/1.4.2/assets/js/opentools-updatecheck.js (copied) (copied from woocommerce-basic-ordernumbers/trunk/assets/js/opentools-updatecheck.js)
-
tags/1.4.2/library/css/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/css/index.html)
-
tags/1.4.2/library/css/ordernumber.css (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/css/ordernumber.css)
-
tags/1.4.2/library/images/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/images/index.html)
-
tags/1.4.2/library/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/index.html)
-
tags/1.4.2/library/js/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/js/index.html)
-
tags/1.4.2/library/js/ordernumber.js (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/js/ordernumber.js)
-
tags/1.4.2/library/ordernumber_helper.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/ordernumber_helper.php) (1 diff)
-
tags/1.4.2/ordernumber_helper_woocommerce.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/ordernumber_helper_woocommerce.php)
-
tags/1.4.2/ordernumbers_woocommerce_basic.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/ordernumbers_woocommerce_basic.php)
-
tags/1.4.2/readme.txt (copied) (copied from woocommerce-basic-ordernumbers/trunk/readme.txt) (2 diffs)
-
tags/1.4.2/woocommerce-basic-ordernumbers.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/woocommerce-basic-ordernumbers.php) (2 diffs)
-
trunk/library/ordernumber_helper.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-basic-ordernumbers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-basic-ordernumbers/tags/1.4.2/library/ordernumber_helper.php
r1452202 r1708995 301 301 $match = true; break; 302 302 case 'equals': 303 $match = ($compareval == $condval); break; 303 if (is_array($compareval)) { 304 $match = ($condval == '') && empty($compareval); 305 } else { 306 $match = ($compareval == $condval); 307 } 308 break; 304 309 case 'contains': 305 310 if (is_array($compareval)) { -
woocommerce-basic-ordernumbers/tags/1.4.2/readme.txt
r1680797 r1708995 5 5 Requires at least: 4.0 6 6 Tested up to: 4.8 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 79 79 == Changelog == 80 80 81 = 1.4.2 = 82 * Allow comparing arrays with empty value in the variable definitions 83 81 84 = 1.4.1 = 82 85 * Fix searching order numbers, sorting by order number in the order list -
woocommerce-basic-ordernumbers/tags/1.4.2/woocommerce-basic-ordernumbers.php
r1680797 r1708995 4 4 * Plugin URI: http://open-tools.net/woocommerce/advanced-ordernumbers-for-woocommerce.html 5 5 * Description: Configure WooCommerce ordernumbers to have a running counter and arbitrary, fixed text (prefix / postfix). 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: Open Tools 8 8 * Author URI: http://open-tools.net … … 11 11 * Network: true 12 12 * WC requires at least: 2.2 13 * WC tested up to: 3. 013 * WC tested up to: 3.1 14 14 */ 15 15 -
woocommerce-basic-ordernumbers/trunk/library/ordernumber_helper.php
r1452202 r1708995 301 301 $match = true; break; 302 302 case 'equals': 303 $match = ($compareval == $condval); break; 303 if (is_array($compareval)) { 304 $match = ($condval == '') && empty($compareval); 305 } else { 306 $match = ($compareval == $condval); 307 } 308 break; 304 309 case 'contains': 305 310 if (is_array($compareval)) { -
woocommerce-basic-ordernumbers/trunk/readme.txt
r1680797 r1708995 5 5 Requires at least: 4.0 6 6 Tested up to: 4.8 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 79 79 == Changelog == 80 80 81 = 1.4.2 = 82 * Allow comparing arrays with empty value in the variable definitions 83 81 84 = 1.4.1 = 82 85 * Fix searching order numbers, sorting by order number in the order list -
woocommerce-basic-ordernumbers/trunk/woocommerce-basic-ordernumbers.php
r1680797 r1708995 4 4 * Plugin URI: http://open-tools.net/woocommerce/advanced-ordernumbers-for-woocommerce.html 5 5 * Description: Configure WooCommerce ordernumbers to have a running counter and arbitrary, fixed text (prefix / postfix). 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: Open Tools 8 8 * Author URI: http://open-tools.net … … 11 11 * Network: true 12 12 * WC requires at least: 2.2 13 * WC tested up to: 3. 013 * WC tested up to: 3.1 14 14 */ 15 15
Note: See TracChangeset
for help on using the changeset viewer.