Version Description
That silly bug with the database tables not being created has been squashed. Improved query performance.
Download this release
Release Info
Developer | shawn@eggplantstudios.ca |
Plugin | Eggplant 301 Redirects |
Version | 2.2.8 |
Comparing to | |
See all releases |
Code changes from version 2.2.7 to 2.2.8
- eps-301-redirects.php +3 -3
- plugin.php +1 -1
- readme.txt +3 -3
eps-301-redirects.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
*
|
16 |
* @package EPS 301 Redirects
|
17 |
* @author Shawn Wernig ( shawn@eggplantstudios.ca )
|
18 |
-
* @version 2.2.
|
19 |
*/
|
20 |
|
21 |
|
@@ -25,7 +25,7 @@
|
|
25 |
Plugin Name: Eggplant 301 Redirects
|
26 |
Plugin URI: http://www.eggplantstudios.ca
|
27 |
Description: Create your own 301 redirects using this powerful plugin.
|
28 |
-
Version: 2.2.
|
29 |
Author: Shawn Wernig http://www.eggplantstudios.ca
|
30 |
License: GPLv2 or later
|
31 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -36,7 +36,7 @@ if( ! defined( 'EPS_REDIRECT_PRO' ) )
|
|
36 |
|
37 |
define ( 'EPS_REDIRECT_PATH', plugin_dir_path(__FILE__) );
|
38 |
define ( 'EPS_REDIRECT_URL', plugins_url() . '/eps-301-redirects/');
|
39 |
-
define ( 'EPS_REDIRECT_VERSION', '2.2.
|
40 |
define ( 'EPS_REDIRECT_PRO', false);
|
41 |
|
42 |
include( EPS_REDIRECT_PATH.'eps-form-elements.php');
|
15 |
*
|
16 |
* @package EPS 301 Redirects
|
17 |
* @author Shawn Wernig ( shawn@eggplantstudios.ca )
|
18 |
+
* @version 2.2.8
|
19 |
*/
|
20 |
|
21 |
|
25 |
Plugin Name: Eggplant 301 Redirects
|
26 |
Plugin URI: http://www.eggplantstudios.ca
|
27 |
Description: Create your own 301 redirects using this powerful plugin.
|
28 |
+
Version: 2.2.8
|
29 |
Author: Shawn Wernig http://www.eggplantstudios.ca
|
30 |
License: GPLv2 or later
|
31 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
36 |
|
37 |
define ( 'EPS_REDIRECT_PATH', plugin_dir_path(__FILE__) );
|
38 |
define ( 'EPS_REDIRECT_URL', plugins_url() . '/eps-301-redirects/');
|
39 |
+
define ( 'EPS_REDIRECT_VERSION', '2.2.8');
|
40 |
define ( 'EPS_REDIRECT_PRO', false);
|
41 |
|
42 |
include( EPS_REDIRECT_PATH.'eps-form-elements.php');
|
plugin.php
CHANGED
@@ -136,7 +136,7 @@ class EPS_Redirects_Plugin {
|
|
136 |
*
|
137 |
*/
|
138 |
protected function _migrate_to_v2() {
|
139 |
-
$redirects = get_option(
|
140 |
|
141 |
if (empty($redirects)) return false; // No redirects to migrate.
|
142 |
|
136 |
*
|
137 |
*/
|
138 |
protected function _migrate_to_v2() {
|
139 |
+
$redirects = get_option( 'eps_redirects' );
|
140 |
|
141 |
if (empty($redirects)) return false; // No redirects to migrate.
|
142 |
|
readme.txt
CHANGED
@@ -10,7 +10,7 @@ Requires at least: 3.0.1
|
|
10 |
|
11 |
Tested up to: 4.2.1
|
12 |
|
13 |
-
Stable tag: 2.2.
|
14 |
|
15 |
License: GPLv2 or later
|
16 |
|
@@ -116,7 +116,7 @@ By default, any URL with a query string is considered unique, and will redirect
|
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
-
= 2.2.
|
120 |
That silly bug with the database tables not being created has been squashed. Improved query performance.
|
121 |
|
122 |
= 2.2.6 =
|
@@ -176,7 +176,7 @@ Overhauled the entire plugin. Redirects are stored in their own table. Gracefull
|
|
176 |
|
177 |
== Upgrade Notice ==
|
178 |
|
179 |
-
= 2.2.
|
180 |
That silly bug with the database tables not being created has been squashed. Improved query performance.
|
181 |
|
182 |
= 2.2.6 =
|
10 |
|
11 |
Tested up to: 4.2.1
|
12 |
|
13 |
+
Stable tag: 2.2.8
|
14 |
|
15 |
License: GPLv2 or later
|
16 |
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
+
= 2.2.8 =
|
120 |
That silly bug with the database tables not being created has been squashed. Improved query performance.
|
121 |
|
122 |
= 2.2.6 =
|
176 |
|
177 |
== Upgrade Notice ==
|
178 |
|
179 |
+
= 2.2.8 =
|
180 |
That silly bug with the database tables not being created has been squashed. Improved query performance.
|
181 |
|
182 |
= 2.2.6 =
|