Plugin Directory

Changeset 3051418


Ignore:
Timestamp:
03/15/2024 02:55:11 AM (21 months ago)
Author:
ibenic
Message:

Pushing 2.48.1

Location:
giveasap/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • giveasap/trunk/admin/class-sg-permalink-settings.php

    r2944066 r3051418  
    2929    public function slug_input() {
    3030        $text = get_option( 'sg_giveaway_slug', null )
    31         ?><fieldset><input id="sg_giveaway_slug" name="sg_giveaway_slug" type="text" class="regular-text code" value="<?php echo esc_attr( $text ); ?>" placeholder="giveaway"></fieldset>
     31        ?><fieldset>
     32            <?php wp_nonce_field( 'sg_giveaway_slug', 'sg_giveaway_slug_nonce' ); ?>
     33            <input id="sg_giveaway_slug" name="sg_giveaway_slug" type="text" class="regular-text code" value="<?php echo esc_attr( $text ); ?>" placeholder="giveaway">
     34        </fieldset>
    3235        <?php
    3336    }
     
    4447            return;
    4548        }
     49
     50        if ( empty( $_POST['sg_giveaway_slug_nonce'] ) ) {
     51            return;
     52        }
     53
     54        if ( ! wp_verify_nonce( sanitize_text_field( $_POST['sg_giveaway_slug_nonce'] ), 'sg_giveaway_slug' ) ) {
     55            return;
     56        }
    4657
    4758        if ( isset( $_POST['permalink_structure'] ) || isset( $_POST['sg_giveaway_slug'] ) ) :
  • giveasap/trunk/giveasap.php

    r3024625 r3051418  
    55 * Plugin URI:  http://www.wpsimplegiveaways.com
    66 * Description: Create beautiful giveaways and grow your email list and business.
    7  * Version:     2.48.0
     7 * Version:     2.48.1
    88 * Author:      Igor Benic
    99 * Author URI:  http://ibenic.com
  • giveasap/trunk/readme.txt

    r3024625 r3051418  
    33Tags: giveaway, competition, contest, sweepstakes, sweepstake, contests, giveaways
    44Requires at least: 4.0
    5 Tested up to: 6.4.2
    6 Stable tag: 2.48.0
     5Tested up to: 6.4.3
     6Stable tag: 2.48.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    174174== Changelog ==
    175175
     176= 2.48.1 - 2024-03-15 =
     177* Fix: Security fix
     178
    176179= 2.48.0- 2024-01-20 =
    177180* New: Prize Threshold - award prizes to subscribers when they reach a certain entry amount.
Note: See TracChangeset for help on using the changeset viewer.