Changeset 2042849
- Timestamp:
- 03/02/2019 03:35:23 PM (7 years ago)
- Location:
- quick-affiliate-store/trunk
- Files:
-
- 5 edited
-
freemius/includes/class-freemius.php (modified) (3 diffs)
-
freemius/start.php (modified) (1 diff)
-
freemius/templates/debug.php (modified) (2 diffs)
-
quick-affiliate-store.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-affiliate-store/trunk/freemius/includes/class-freemius.php
r2026161 r2042849 2978 2978 */ 2979 2979 static function _toggle_debug_mode() { 2980 if ( ! is_super_admin() ) { 2981 return; 2982 } 2983 2980 2984 $is_on = fs_request_get( 'is_on', false, 'post' ); 2981 2985 … … 3009 3013 */ 3010 3014 static function _get_db_option() { 3015 check_admin_referer( 'fs_get_db_option' ); 3016 3011 3017 $option_name = fs_request_get( 'option_name' ); 3018 3019 if ( ! is_super_admin() || 3020 ! fs_starts_with( $option_name, 'fs_' ) 3021 ) { 3022 self::shoot_ajax_failure(); 3023 } 3012 3024 3013 3025 $value = get_option( $option_name ); … … 3033 3045 */ 3034 3046 static function _set_db_option() { 3035 $option_name = fs_request_get( 'option_name' ); 3047 check_admin_referer( 'fs_set_db_option' ); 3048 3049 $option_name = fs_request_get( 'option_name' ); 3050 3051 if ( ! is_super_admin() || 3052 ! fs_starts_with( $option_name, 'fs_' ) 3053 ) { 3054 self::shoot_ajax_failure(); 3055 } 3056 3036 3057 $option_value = fs_request_get( 'option_value' ); 3037 3058 -
quick-affiliate-store/trunk/freemius/start.php
r2026161 r2042849 16 16 * @var string 17 17 */ 18 $this_sdk_version = '2.2. 3';18 $this_sdk_version = '2.2.4'; 19 19 20 20 #region SDK Selection Logic -------------------------------------------------------------------- -
quick-affiliate-store/trunk/freemius/templates/debug.php
r2026161 r2042849 114 114 $.post(ajaxurl, { 115 115 action : 'fs_get_db_option', 116 _wpnonce : '<?php echo wp_create_nonce( 'fs_get_db_option' ) ?>', 116 117 option_name: optionName 117 118 }, function (response) { … … 133 134 $.post(ajaxurl, { 134 135 action : 'fs_set_db_option', 136 _wpnonce : '<?php echo wp_create_nonce( 'fs_set_db_option' ) ?>', 135 137 option_name : optionName, 136 138 option_value: optionValue -
quick-affiliate-store/trunk/quick-affiliate-store.php
r2026161 r2042849 3 3 * Plugin Name: Quick Affiliate Store 4 4 * Description: Monetize your Wordpress site with affiliate marketing. Supports Amazon feed. 5 * Version: 0.5. 05 * Version: 0.5.1 6 6 * Text Domain: quick-affiliate-store 7 7 * Domain Path: /languages -
quick-affiliate-store/trunk/readme.txt
r2026162 r2042849 1 1 === Quick Affiliate Store === 2 2 Contributors: sangaran 3 Tags: affiliate marketing, affiliate, store3 Tags: affiliate marketing, affiliate, amazon affiliate, amazon, market, store 4 4 Requires at least: 4.3 5 Tested up to: 5. 0.35 Tested up to: 5.1 6 6 Requires PHP: 5.3 7 7 Stable tag: trunk … … 68 68 69 69 == Changelog == 70 VERSION 0.5.0 (2 FEBRUARY 2018) 70 VERSION 0.5.1 (3 MARCH 2019) 71 - Upgraded included Freemius library 72 73 VERSION 0.5.0 (2 FEBRUARY 2019) 71 74 - Initial public release
Note: See TracChangeset
for help on using the changeset viewer.