Changeset 3146567
- Timestamp:
- 09/04/2024 05:28:37 PM (18 months ago)
- Location:
- ignitiondeck/trunk
- Files:
-
- 5 edited
-
classes/class-idf-wizard.php (modified) (2 diffs)
-
classes/class-tgm-plugin-activation.php (modified) (1 diff)
-
idf-admin.php (modified) (1 diff)
-
idf.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ignitiondeck/trunk/classes/class-idf-wizard.php
r3142505 r3146567 687 687 ); 688 688 689 $receipts = get_option( 'md_receipt_settings');689 $receipts = maybe_unserialize( get_option( 'md_receipt_settings' ) ); 690 690 $coname = isset( $receipts['coname'] ) ? $receipts['coname'] : ''; 691 691 $coemail = isset( $receipts['coemail'] ) ? $receipts['coemail'] : ''; … … 744 744 $coname = sanitize_text_field( $_POST['co_name'] ); 745 745 $coemail = sanitize_text_field( $_POST['co_email'] ); 746 $receipts = get_option( 'md_receipt_settings');746 $receipts = maybe_unserialize(get_option( 'md_receipt_settings' )); 747 747 $receipts['coname'] = $coname; 748 748 $receipts['coemail'] = $coemail; -
ignitiondeck/trunk/classes/class-tgm-plugin-activation.php
r3142505 r3146567 1774 1774 } 1775 1775 // Core update screen. 1776 if ( isset( $_POST['_wpnonce'] ) &&! wp_verify_nonce( $_POST['_wpnonce'], 'upgrade-core' ) ) {1776 if ( ! isset( $_POST['_wpnonce'] ) || ! wp_verify_nonce( $_POST['_wpnonce'], 'upgrade-core' ) ) { 1777 1777 return false; 1778 1778 } -
ignitiondeck/trunk/idf-admin.php
r3142505 r3146567 87 87 */ 88 88 function idf_main_menu() { 89 //add condition to pass check_admin_referer() warning 90 if ( isset( $_POST['_idf_main_menu_helper'] ) && isset( $_POST['_wpnonce'] ) && ! wp_verify_nonce( $_POST['_wpnonce'], '_wpnonce' ) ) { 91 return false; 89 // Verify nonce if _idf_main_menu_helper is set, regardless of request method 90 if ( isset($_POST['_idf_main_menu_helper']) && 91 ( ! isset($_POST['_wpnonce']) || ! wp_verify_nonce($_POST['_wpnonce'], '_wpnonce'))) { 92 return false; 92 93 } 93 94 // Check user capabilities. -
ignitiondeck/trunk/idf.php
r3142505 r3146567 8 8 URI: https://IgnitionDeck.com 9 9 Description: A crowdfunding and ecommerce plugin for WordPress that helps you crowdfund, pre-order, and sell goods online. 10 Version: 1.10. 110 Version: 1.10.2 11 11 Author: IgnitionDeck 12 12 Author URI: https://IgnitionDeck.com … … 18 18 require_once 'idf-globals.php'; 19 19 global $active_plugins, $idf_current_version; 20 $idf_current_version = '1.10. 1';20 $idf_current_version = '1.10.2'; 21 21 require_once 'idf-update.php'; 22 22 require_once 'classes/class-idf_requirements.php'; -
ignitiondeck/trunk/readme.txt
r3142505 r3146567 5 5 Requires at least: 4.9 6 6 Tested up to: 6.6 7 Stable tag: 1.10. 17 Stable tag: 1.10.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 139 139 == Changelog == 140 140 141 = 1.10.2 = 142 143 * Improved security of nonce verification in a couple places 144 * Fixed an issue when receipt settings where not always being saved correctly 145 141 146 = 1.10.1 = 142 147
Note: See TracChangeset
for help on using the changeset viewer.