Plugin Directory

Changeset 3155369


Ignore:
Timestamp:
09/20/2024 08:16:25 PM (15 months ago)
Author:
cubewp1211
Message:

Trunk update 1.1.17.1

Location:
cubewp-framework/trunk/cube/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cubewp-framework/trunk/cube/classes/class-cubewp-frontend-templates.php

    r3155340 r3155369  
    321321        }
    322322
    323         foreach ($templates as $template) {
    324             $located = locate_template($template);
    325             if ($located) {
    326                 return $located;
     323        if(!empty($templates)){
     324            foreach ($templates as $template) {
     325                $located = locate_template($template);
     326                if ($located) {
     327                    return $located;
     328                }
    327329            }
    328330        }
  • cubewp-framework/trunk/cube/classes/class-cubewp-load.php

    r3155340 r3155369  
    2121     * @var string
    2222     */
    23     public static $CubeWp_version = '1.1.17';
     23    public static $CubeWp_version = '1.1.17.1';
    2424   
    2525    /**
Note: See TracChangeset for help on using the changeset viewer.