Peter’s Login Redirect - Version 2.9.4

Version Description

  • Fixed: Warning: is_readable(): open_basedir restriction.
Download this release

Release Info

Developer Collizo4sky
Plugin Icon 128x128 Peter’s Login Redirect
Version 2.9.4
Comparing to
See all releases

Code changes from version 2.9.3 to 2.9.4

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wplogin_redirect.php +3 -3
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: login, logout, redirect, admin, administration, dashboard, users, authenti
5
  Requires at least: 3.2
6
  Requires PHP: 5.3
7
  Tested up to: 5.2
8
- Stable tag: 2.9.3
9
  License: GPL-2.0+
10
 
11
  Redirect users to different locations after logging in and logging out.
@@ -196,6 +196,9 @@ For a deeper dive into this feature, please [see this video](https://www.dropbox
196
 
197
  == Changelog ==
198
 
 
 
 
199
  = 2.9.3 =
200
  * Move languages po/mo files into languages folder.
201
 
5
  Requires at least: 3.2
6
  Requires PHP: 5.3
7
  Tested up to: 5.2
8
+ Stable tag: 2.9.4
9
  License: GPL-2.0+
10
 
11
  Redirect users to different locations after logging in and logging out.
196
 
197
  == Changelog ==
198
 
199
+ = 2.9.4 =
200
+ * Fixed: Warning: is_readable(): open_basedir restriction.
201
+
202
  = 2.9.3 =
203
  * Move languages po/mo files into languages folder.
204
 
wplogin_redirect.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.theblog.ca/wplogin-redirect
5
  Description: Redirect users to different locations after logging in. Define a set of rules for specific users, user with specific roles, users with specific capabilities, and a blanket rule for all other users. This is all managed in Settings > Login/logout redirects.
6
  Author: Peter Keung
7
  Author URI: http://www.theblog.ca
8
- Version: 2.9.3
9
  Text Domain: peters-login-redirect
10
  Domain Path: /languages/
11
  */
@@ -15,7 +15,7 @@ require_once dirname(__FILE__) . '/mo-admin-notice-featured.php';
15
  add_action( 'init', 'rul_textdomain' );
16
  function rul_textdomain()
17
  {
18
- load_plugin_textdomain( 'peters-login-redirect', false, dirname( plugin_basename(__FILE__) . '/languages/' ) );
19
  }
20
 
21
  global $wpdb;
@@ -23,7 +23,7 @@ global $rul_db_addresses;
23
  global $rul_version;
24
  // Name of the database table that will hold group information and moderator rules
25
  $rul_db_addresses = $wpdb->prefix . 'login_redirects';
26
- $rul_version = '2.9.3';
27
 
28
  // A global variable that we will add to on the fly when $rul_local_only is set to equal 1
29
  $rul_allowed_hosts = array();
5
  Description: Redirect users to different locations after logging in. Define a set of rules for specific users, user with specific roles, users with specific capabilities, and a blanket rule for all other users. This is all managed in Settings > Login/logout redirects.
6
  Author: Peter Keung
7
  Author URI: http://www.theblog.ca
8
+ Version: 2.9.4
9
  Text Domain: peters-login-redirect
10
  Domain Path: /languages/
11
  */
15
  add_action( 'init', 'rul_textdomain' );
16
  function rul_textdomain()
17
  {
18
+ load_plugin_textdomain('peters-login-redirect', false, dirname(plugin_basename(__FILE__)) . '/languages');
19
  }
20
 
21
  global $wpdb;
23
  global $rul_version;
24
  // Name of the database table that will hold group information and moderator rules
25
  $rul_db_addresses = $wpdb->prefix . 'login_redirects';
26
+ $rul_version = '2.9.4';
27
 
28
  // A global variable that we will add to on the fly when $rul_local_only is set to equal 1
29
  $rul_allowed_hosts = array();