Plugin Directory

Changeset 2579682


Ignore:
Timestamp:
08/07/2021 01:17:24 PM (5 years ago)
Author:
zoan
Message:

fixed activation redirect

Location:
wp-revive-adserver/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-revive-adserver/trunk/readme.txt

    r2576449 r2579682  
    55Requires at least: 4.0
    66Tested up to: 5.8
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4949
    5050== Changelog ==
     51= 1.1.1 =
     52* Fixed Activation redirect issue with admin ajax.
     53* Tested against WordPress Version 5.8
    5154
    5255= 1.1 =
     
    5861
    5962== Upgrade Notice ==
     63= 1.1.1 =
     64* Fixed Activation redirect issue with admin ajax.
    6065
    6166= 1.1 =
  • wp-revive-adserver/trunk/src/Inc/WPReviveLoader.php

    r2576388 r2579682  
    5252   
    5353    public function wprevive_activation_redirect() {
     54        global $pagenow;
     55        if ( $pagenow == 'plugins.php' ) {
    5456        if ( intval( get_option( 'wprevive_activation_redirect', false ) ) === wp_get_current_user()->ID ) {
    5557            // Make sure we don't redirect again after this one
     
    5961        }
    6062    }
     63    }
    6164
    6265
  • wp-revive-adserver/trunk/wp-revive.php

    r2576388 r2579682  
    44Plugin URI: http://www.stevensoehl.com/revive-ad-server-wordpress-plugin/
    55Description: Display Revive Adserver ad campaigns anywhere on your WordPress website using Shortcodes. Supports your choice including Asynchronous JS, Javascript, and IFrame Invocation Code.
    6 Version: 1.1
     6Version: 1.1.1
    77Author: Steven Soehl
    88Author URI: https://www.stevensoehl.com
     
    4040
    4141if (!defined('WPRevive_VERSION_NUM'))
    42     define('WPRevive_VERSION_NUM', '1.0.0');
     42    define('WPRevive_VERSION_NUM', '1.1.1');
    4343
    4444add_option(WPRevive_VERSION_KEY, WPRevive_VERSION_NUM);
Note: See TracChangeset for help on using the changeset viewer.