Changeset 2938963
- Timestamp:
- 07/15/2023 12:03:12 PM (3 years ago)
- Location:
- ade-custom-shipping/trunk
- Files:
-
- 2 edited
-
README.md (modified) (2 diffs)
-
ade-custom-shipping.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ade-custom-shipping/trunk/README.md
r2936651 r2938963 7 7 Requires PHP: 7.0 8 8 Tested up to: 6.2 9 Stable tag: 4.1. 09 Stable tag: 4.1.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 54 54 == Changelog == 55 56 = 4.1.1 = 57 58 Fix bugs 55 59 56 60 = 4.1.0 = -
ade-custom-shipping/trunk/ade-custom-shipping.php
r2936642 r2938963 7 7 * Author URI: https://adeleyeayodeji.com 8 8 * Description: Add shipping zones 3 levels deep for ecommerce. 9 * Version: 4.1. 09 * Version: 4.1.1 10 10 * License: GPL2 11 11 * License URL: http://www.gnu.org/licenses/gpl-2.0.txt … … 115 115 ?> 116 116 <script> 117 var ade_billing_state = '<?php echo $dd1[1]; ?>';118 var ade_billing_city = '<?php echo $dd1[0]; ?>';117 var ade_billing_state = '<?php echo isset($dd1[1]) ? $dd1[1] : ''; ?>'; 118 var ade_billing_city = '<?php echo isset($dd1[0]) ? $dd1[0] : ''; ?>'; 119 119 </script> 120 120 <?php
Note: See TracChangeset
for help on using the changeset viewer.