Plugin Directory

Changeset 3142439


Ignore:
Timestamp:
08/27/2024 05:52:24 PM (19 months ago)
Author:
fuzzoid
Message:

Coatings bugfix

Location:
3dprint-lite/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 3dprint-lite/trunk/3dprint-lite.php

    r3141765 r3142439  
    66Text Domain: 3dprint-lite
    77Plugin URI: http://www.wp3dprinting.com
    8 Version: 2.0.9.8
     8Version: 2.0.9.9
    99*/
    1010
     
    1313}
    1414
    15 define('P3DLITE_VERSION', '2.0.9.8');
     15define('P3DLITE_VERSION', '2.0.9.9');
    1616
    1717if ( !function_exists( 'get_home_path' ) ) {
  • 3dprint-lite/trunk/includes/3dprint-lite-frontend.php

    r3141765 r3142439  
    377377$db_printers = p3dlite_sort_by_order(p3dlite_get_enabled($db_printers));
    378378$db_materials = p3dlite_sort_by_order(p3dlite_get_enabled($db_materials));
    379 $db_coatings = p3dlite_sort_by_order(p3dlite_get_enabled($db_coatings));
     379if (is_array($db_coatings) && count($db_coatings)) {
     380    $db_coatings = p3dlite_sort_by_order(p3dlite_get_enabled($db_coatings));
     381}
    380382$db_infills = p3dlite_get_enabled($db_infills);
    381383
  • 3dprint-lite/trunk/readme.txt

    r3141765 r3142439  
    44Requires at least: 3.5
    55Tested up to: 6.6
    6 Stable tag: 2.0.9.8
     6Stable tag: 2.0.9.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    109109== Changelog ==
    110110
     111= 2.0.9.9 =
     112
     113Coatings bugfix
     114
    111115= 2.0.9.8 =
    112116
Note: See TracChangeset for help on using the changeset viewer.