Plugin Directory

Changeset 2749006 for popup-builder


Ignore:
Timestamp:
06/28/2022 10:06:03 AM (4 years ago)
Author:
Sygnoos
Message:

New version 4.1.12 released

Location:
popup-builder
Files:
359 added
5 edited

Legend:

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

    r2728641 r2749006  
    14541454    {
    14551455        $allowToAction = AdminHelper::userCanAccessTo();
    1456         if (!$allowToAction) {
     1456        $nonce = isset($_POST['sgpb_saveSettings_nonce']) ? sanitize_text_field($_POST['sgpb_saveSettings_nonce']): '';
     1457        if (!$allowToAction || !wp_verify_nonce($nonce, 'sgpbSaveSettings')) {
    14571458            wp_redirect(get_home_url());
    14581459            exit();
  • popup-builder/trunk/com/config/configPackage.php

    r2743521 r2749006  
    44}
    55
    6 define('SG_POPUP_VERSION', '4.1.11');
     6define('SG_POPUP_VERSION', '4.1.12');
    77define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
    88define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
  • popup-builder/trunk/popup-builder.php

    r2743521 r2749006  
    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.1.11
     6* Version: 4.1.12
    77* Author: Sygnoos
    88* Author URI: https://sygnoos.com
  • popup-builder/trunk/public/views/settings.php

    r2686454 r2749006  
    2222            <p class="sgpb-header-h1 sgpb-margin-top-20 sgpb-margin-bottom-50"><?php esc_html_e('General Settings', SG_POPUP_TEXT_DOMAIN); ?></p>
    2323            <form method="POST" action="<?php echo esc_url_raw(admin_url().'admin-post.php?action=sgpbSaveSettings')?>">
     24                <?php wp_nonce_field('sgpbSaveSettings', 'sgpb_saveSettings_nonce'); ?>
    2425                <div class="formItem">
    2526                    <p class="subFormItem__title sgpb-flex-220"><?php esc_html_e('Enable DEBUG MODE', SG_POPUP_TEXT_DOMAIN)?>:</p>
  • popup-builder/trunk/readme.txt

    r2743521 r2749006  
    99Tested up to: 6.0
    1010Requires PHP: 5.3.3
    11 Stable tag: 4.1.11
     11Stable tag: 4.1.12
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    147147== Changelog ==
    148148
     149= Version 4.1.12 =
     150* Improvement of code: Cross-site request forgery issues have been solved
     151
    149152= Version 4.1.11 =
    150153* Improvement of code: touch event has been added for mobile devices
     
    557560== Upgrade Notice ==
    558561
    559 Current Version of Popup Builder is 4.1.11
     562Current Version of Popup Builder is 4.1.12
Note: See TracChangeset for help on using the changeset viewer.