Plugin Directory

Changeset 2579219


Ignore:
Timestamp:
08/06/2021 09:17:54 AM (5 years ago)
Author:
Sygnoos
Message:

Version 4.0.1 released.

Location:
popup-builder
Files:
376 added
4 edited

Legend:

Unmodified
Added
Removed
  • popup-builder/trunk/com/classes/popups/SubscriptionPopup.php

    r2578665 r2579219  
    255255            ),
    256256            'style' => $inputStyles,
    257             'errorMessageBoxStyles' => $inputStyles["width"]??''
     257            'errorMessageBoxStyles' => isset($inputStyles["width"]) ?$inputStyles["width"] : ''
    258258        );
    259259
     
    274274            ),
    275275            'style' => $inputStyles,
    276             'errorMessageBoxStyles' => $inputStyles['width']??''
     276            'errorMessageBoxStyles' => isset($inputStyles['width']) ? $inputStyles['width'] : ''
    277277        );
    278278
     
    293293            ),
    294294            'style' => $inputStyles,
    295             'errorMessageBoxStyles' => $inputStyles['width']??''
     295            'errorMessageBoxStyles' => isset($inputStyles['width']) ? $inputStyles['width'] : ''
    296296        );
    297297
     
    311311                'data-error-message-class' => 'sgpb-gdpr-error-message'
    312312            ),
    313             'style' => array('width' => $inputWidth??''),
     313            'style' => array('width' => isset($inputWidth)? $inputWidth :''),
    314314            'label' => $gdprLabel,
    315315            'text' => $this->getFieldValue('sgpb-subs-gdpr-text'),
    316             'errorMessageBoxStyles' => $inputStyles['width']??''
     316            'errorMessageBoxStyles' => isset($inputStyles['width'])?$inputStyles['width']:''
    317317        );
    318318        /* GDPR checkbox */
     
    589589            'placeholderColor' => $popupOptions['sgpb-subs-text-placeholder-color'],
    590590            'formColor' => $popupOptions['sgpb-subs-form-bg-color'],
    591             'formPadding' => $popupOptions['sgpb-subs-form-padding']??'',
    592             'formBackgroundOpacity' => $popupOptions['sgpb-subs-form-bg-opacity']??''
     591            'formPadding' => isset($popupOptions['sgpb-subs-form-padding'])?$popupOptions['sgpb-subs-form-padding']:'',
     592            'formBackgroundOpacity' => isset($popupOptions['sgpb-subs-form-bg-opacity'])?$popupOptions['sgpb-subs-form-bg-opacity']:''
    593593        );
    594594
  • popup-builder/trunk/com/config/configPackage.php

    r2578665 r2579219  
    44}
    55
    6 define('SG_POPUP_VERSION', '4.0');
     6define('SG_POPUP_VERSION', '4.0.1');
    77define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
    88define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
  • popup-builder/trunk/popup-builder.php

    r2578665 r2579219  
    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: 4.0
     6* Version: 4.0.1
    77* Author: Sygnoos
    88* Author URI: https://sygnoos.com
  • popup-builder/trunk/readme.txt

    r2578665 r2579219  
    99Tested up to: 5.8
    1010Requires PHP: 5.3.3
    11 Stable tag: 4.0
     11Stable tag: 4.0.1
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    146146== Changelog ==
    147147
     148= Version 4.0.1 =
     149* Bug fixed related to issue with PHP version below 7.0
     150
    148151= Version 4.0 =
    149152* Improvement of design: the whole plugin has been redesigned for a better user experience.
Note: See TracChangeset for help on using the changeset viewer.