Plugin Directory

Changeset 2934747


Ignore:
Timestamp:
07/05/2023 06:49:11 PM (3 years ago)
Author:
intellasoftsolutions
Message:

Update to 3.28.1

Location:
seo-content-randomizer/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • seo-content-randomizer/trunk/freemius.php

    r2393852 r2934747  
    2525                'has_addons'          => true,
    2626                'has_paid_plans'      => true,
     27                'trial'               => array(
     28                    'days'               => 14,
     29                    'is_require_payment' => true,
     30                ),
    2731                'has_affiliation'     => 'all',
    2832                'menu'                => array(
  • seo-content-randomizer/trunk/freemius/config.php

    r2416825 r2934747  
    147147
    148148    if ( ! defined( 'WP_FS__IS_HTTP_REQUEST' ) ) {
    149         define( 'WP_FS__IS_HTTP_REQUEST', isset( $_SERVER['HTTP_HOST'] ) );
     149        define( 'WP_FS__IS_HTTP_REQUEST', isset( $_SERVER['HTTP_HOST'] ) && isset( $_SERVER['REQUEST_METHOD'] ) );
    150150    }
    151151
     
    355355            ( is_network_admin() ||
    356356              ( ( defined( 'DOING_AJAX' ) && DOING_AJAX &&
    357                   ( isset( $_REQUEST['_fs_network_admin'] ) /*||
     357                  ( isset( $_REQUEST['_fs_network_admin'] ) && 'true' === $_REQUEST['_fs_network_admin'] /*||
    358358                    ( ! empty( $_REQUEST['action'] ) && 'delete-plugin' === $_REQUEST['action'] )*/ )
    359359                ) ||
  • seo-content-randomizer/trunk/freemius/require.php

    r2688218 r2934747  
    1414    require_once dirname( __FILE__ ) . '/config.php';
    1515    require_once WP_FS__DIR_INCLUDES . '/fs-core-functions.php';
     16    require_once WP_FS__DIR_INCLUDES . '/fs-html-escaping-functions.php';
    1617
    1718    // Logger must be loaded before any other.
     
    2223    require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-option-manager.php';
    2324    require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-gdpr-manager.php';
     25    require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-clone-manager.php';
     26    require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-permission-manager.php';
    2427    require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-cache-manager.php';
    2528    require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-admin-notice-manager.php';
  • seo-content-randomizer/trunk/freemius/start.php

    r2778877 r2934747  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.4.5';
     18    $this_sdk_version = '2.5.10';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
     
    6969    if ( ! isset( $fs_active_plugins ) ) {
    7070        // Load all Freemius powered active plugins.
    71         $fs_active_plugins = get_option( 'fs_active_plugins', new stdClass() );
     71        $fs_active_plugins = get_option( 'fs_active_plugins' );
     72
     73        if ( ! is_object( $fs_active_plugins ) ) {
     74            $fs_active_plugins = new stdClass();
     75        }
    7276
    7377        if ( ! isset( $fs_active_plugins->plugins ) ) {
  • seo-content-randomizer/trunk/includes/class-issscr-helpers.php

    r2437727 r2934747  
    2828        }
    2929
    30         return issscr_fs()->is_plan( $plan_handle, true );
     30        return issscr_fs()->is_plan_or_trial( $plan_handle, true );
    3131    }
    3232
  • seo-content-randomizer/trunk/readme.txt

    r2778877 r2934747  
    33Tags: SEO, Content, Text, Random, Randomization, Randomizing, Dynamic Content
    44Requires at least: 4.9.0
    5 Tested up to: 6.1.0
     5Tested up to: 6.2.0
    66Requires PHP: 5.6
    7 Stable tag: 3.27.1
     7Stable tag: 3.28.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
  • seo-content-randomizer/trunk/seo-content-randomizer.php

    r2778877 r2934747  
    1717 * Plugin URI:        https://intellasoftplugins.com/
    1818 * Description:       Write multiple versions of a page’s content that will be randomly selected each time the page is loaded. This also works with images and keywords.
    19  * Version:           3.27.1
     19 * Version:           3.28.1
    2020 * Author:            IntellaSoft Solutions
    2121 * Author URI:        https://intellasoftplugins.com/
     
    4242 * Rename this for your plugin and update it as you release new versions.
    4343 */
    44 define( 'ISSSCR_VERSION', '3.27.1' );
     44define( 'ISSSCR_VERSION', '3.28.1' );
    4545define( 'ISSSCR_BASENAME', plugin_basename(__FILE__) );
    4646
Note: See TracChangeset for help on using the changeset viewer.