Plugin Directory

Changeset 2042849


Ignore:
Timestamp:
03/02/2019 03:35:23 PM (7 years ago)
Author:
sangaran
Message:

Updated Freemius version

Location:
quick-affiliate-store/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • quick-affiliate-store/trunk/freemius/includes/class-freemius.php

    r2026161 r2042849  
    29782978         */
    29792979        static function _toggle_debug_mode() {
     2980            if ( ! is_super_admin() ) {
     2981                return;
     2982            }
     2983
    29802984            $is_on = fs_request_get( 'is_on', false, 'post' );
    29812985
     
    30093013         */
    30103014        static function _get_db_option() {
     3015            check_admin_referer( 'fs_get_db_option' );
     3016
    30113017            $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            }
    30123024
    30133025            $value = get_option( $option_name );
     
    30333045         */
    30343046        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
    30363057            $option_value = fs_request_get( 'option_value' );
    30373058
  • quick-affiliate-store/trunk/freemius/start.php

    r2026161 r2042849  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.2.3';
     18    $this_sdk_version = '2.2.4';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
  • quick-affiliate-store/trunk/freemius/templates/debug.php

    r2026161 r2042849  
    114114                $.post(ajaxurl, {
    115115                    action     : 'fs_get_db_option',
     116                    _wpnonce   : '<?php echo wp_create_nonce( 'fs_get_db_option' ) ?>',
    116117                    option_name: optionName
    117118                }, function (response) {
     
    133134                    $.post(ajaxurl, {
    134135                        action      : 'fs_set_db_option',
     136                        _wpnonce   : '<?php echo wp_create_nonce( 'fs_set_db_option' ) ?>',
    135137                        option_name : optionName,
    136138                        option_value: optionValue
  • quick-affiliate-store/trunk/quick-affiliate-store.php

    r2026161 r2042849  
    33 * Plugin Name: Quick Affiliate Store
    44 * Description: Monetize your Wordpress site with affiliate marketing. Supports Amazon feed.
    5  * Version: 0.5.0
     5 * Version: 0.5.1
    66 * Text Domain: quick-affiliate-store
    77 * Domain Path: /languages
  • quick-affiliate-store/trunk/readme.txt

    r2026162 r2042849  
    11=== Quick Affiliate Store ===
    22Contributors: sangaran
    3 Tags: affiliate marketing, affiliate, store
     3Tags: affiliate marketing, affiliate, amazon affiliate, amazon, market, store
    44Requires at least: 4.3
    5 Tested up to: 5.0.3
     5Tested up to: 5.1
    66Requires PHP: 5.3
    77Stable tag: trunk
     
    6868
    6969== Changelog ==
    70 VERSION 0.5.0 (2 FEBRUARY 2018)
     70VERSION 0.5.1 (3 MARCH 2019)
     71- Upgraded included Freemius library
     72
     73VERSION 0.5.0 (2 FEBRUARY 2019)
    7174- Initial public release
Note: See TracChangeset for help on using the changeset viewer.