Changeset 3051418
- Timestamp:
- 03/15/2024 02:55:11 AM (21 months ago)
- Location:
- giveasap/trunk
- Files:
-
- 3 edited
-
admin/class-sg-permalink-settings.php (modified) (2 diffs)
-
giveasap.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
giveasap/trunk/admin/class-sg-permalink-settings.php
r2944066 r3051418 29 29 public function slug_input() { 30 30 $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> 32 35 <?php 33 36 } … … 44 47 return; 45 48 } 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 } 46 57 47 58 if ( isset( $_POST['permalink_structure'] ) || isset( $_POST['sg_giveaway_slug'] ) ) : -
giveasap/trunk/giveasap.php
r3024625 r3051418 5 5 * Plugin URI: http://www.wpsimplegiveaways.com 6 6 * Description: Create beautiful giveaways and grow your email list and business. 7 * Version: 2.48. 07 * Version: 2.48.1 8 8 * Author: Igor Benic 9 9 * Author URI: http://ibenic.com -
giveasap/trunk/readme.txt
r3024625 r3051418 3 3 Tags: giveaway, competition, contest, sweepstakes, sweepstake, contests, giveaways 4 4 Requires at least: 4.0 5 Tested up to: 6.4. 26 Stable tag: 2.48. 05 Tested up to: 6.4.3 6 Stable tag: 2.48.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 174 174 == Changelog == 175 175 176 = 2.48.1 - 2024-03-15 = 177 * Fix: Security fix 178 176 179 = 2.48.0- 2024-01-20 = 177 180 * New: Prize Threshold - award prizes to subscribers when they reach a certain entry amount.
Note: See TracChangeset
for help on using the changeset viewer.