Plugin Directory

Changeset 2491863


Ignore:
Timestamp:
03/10/2021 10:39:17 AM (5 years ago)
Author:
Sygnoos
Message:

Version 3.78 released.

Location:
popup-builder
Files:
218 added
4 edited

Legend:

Unmodified
Added
Removed
  • popup-builder/trunk/com/classes/components/Menu.php

    r2490619 r2491863  
    155155            foreach ($navMenuLocations as $menuName => $menuId) {
    156156                $menuItems = wp_get_nav_menu_items($menuId);
    157                 foreach ($menuItems as $menuItem) {
    158                     $popupId = $menuItem->sgpbPopupId;
    159                     if ($popupId > 0) {
    160                         self::$navMenuItems[] = $menuItem;
     157
     158                if (!empty($menuItems)) {
     159                    foreach ($menuItems as $menuItem) {
     160                        $popupId = $menuItem->sgpbPopupId;
     161                        if ($popupId > 0) {
     162                            self::$navMenuItems[] = $menuItem;
     163                        }
    161164                    }
    162                 }
     165                }
    163166            }
    164167        }
  • popup-builder/trunk/com/config/configPackage.php

    r2490619 r2491863  
    44}
    55
    6 define('SG_POPUP_VERSION', '3.77');
     6define('SG_POPUP_VERSION', '3.78');
    77define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
    88define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
  • popup-builder/trunk/popup-builder.php

    r2490619 r2491863  
    44* Plugin URI: https://popup-builder.com
    55* Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
    6 * Version: 3.77
     6* Version: 3.78
    77* Author: Sygnoos
    88* Author URI: https://sygnoos.com
  • popup-builder/trunk/readme.txt

    r2490651 r2491863  
    1010Tested up to: 5.6
    1111Requires PHP: 5.3.3
    12 Stable tag: 3.77
     12Stable tag: 3.78
    1313License: GPLv2 or later
    1414License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    187187== Changelog ==
    188188
     189= Version 3.78 =
     190* PHP notice fixed: Menu.php on line 157
     191
    189192= Version 3.77 =
    190193* New Feature: Now users can select and set the popup on menu from the Appearance section.
Note: See TracChangeset for help on using the changeset viewer.