Changeset 3474515
- Timestamp:
- 03/04/2026 12:15:06 PM (6 days ago)
- Location:
- 3dprint-lite/trunk
- Files:
-
- 4 edited
-
3dprint-lite.php (modified) (2 diffs)
-
includes/3dprint-lite-functions.php (modified) (1 diff)
-
includes/js/3dprint-lite-frontend.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
3dprint-lite/trunk/3dprint-lite.php
r3366322 r3474515 6 6 Text Domain: 3dprint-lite 7 7 Plugin URI: http://www.wp3dprinting.com 8 Version: 2.1.3. 88 Version: 2.1.3.9 9 9 */ 10 10 … … 13 13 } 14 14 15 define('P3DLITE_VERSION', '2.1.3. 8');15 define('P3DLITE_VERSION', '2.1.3.9'); 16 16 17 17 if ( !function_exists( 'get_home_path' ) ) { -
3dprint-lite/trunk/includes/3dprint-lite-functions.php
r3366322 r3474515 1235 1235 $sort['sort_order'][$key] = $value['sort_order']; 1236 1236 } 1237 array_multisort($sort['sort_order'], SORT_ASC, $array); 1237 if (isset($sort['sort_order'])) { 1238 array_multisort($sort['sort_order'], SORT_ASC, $array); 1239 } 1238 1240 return $array; 1239 1241 } -
3dprint-lite/trunk/includes/js/3dprint-lite-frontend.js
r3204051 r3474515 1630 1630 1631 1631 function p3dlitePriceDebug(msg, value) { 1632 if (p3dlite.price_debug_mode=='on' && value.toFixed(p3dlite.price_num_decimals) >0) {1632 if (p3dlite.price_debug_mode=='on' && value.toFixed(p3dlite.price_num_decimals) != 0) { 1633 1633 console.log('PRICE DEBUG '+msg+' '+value.toFixed(p3dlite.price_num_decimals)); 1634 1634 } … … 1880 1880 infill_pct = infill_pct || 0; 1881 1881 1882 //p3dlitePriceDebug(printing_cost,material_cost,coating_cost,infill_cost);1883 1882 var total=printing_cost+material_cost+coating_cost+infill_cost; 1884 1883 p3dlitePriceDebug("printing_cost+material_cost+coating_cost+infill_cost = ", total); -
3dprint-lite/trunk/readme.txt
r3366322 r3474515 3 3 Tags: 3D, printing, 3dprinting, 3D printing, 3dprint 4 4 Requires at least: 3.5 5 Tested up to: 6. 86 Stable tag: 2.1.3. 85 Tested up to: 6.9 6 Stable tag: 2.1.3.9 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 110 110 == Changelog == 111 111 112 = 2.1.3.9 = 113 array_multisort bugfix 114 Price debug mode bugfix 115 WordPress 6.9 116 112 117 = 2.1.3.8 = 113 118 Locale fix
Note: See TracChangeset
for help on using the changeset viewer.