Version Description
Minor bug fixes.
Download this release
Release Info
| Developer | shawn@eggplantstudios.ca |
| Plugin | |
| Version | 2.1.2 |
| Comparing to | |
| See all releases | |
Code changes from version 2.1.1 to 2.1.2
- eps-301-redirects.php +3 -3
- eps-form-elements.php +1 -2
- readme.txt +7 -1
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.1.
|
| 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.1.
|
| 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
|
|
@@ -33,7 +33,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
| 33 |
|
| 34 |
define ( 'EPS_REDIRECT_PATH', plugin_dir_path(__FILE__) );
|
| 35 |
define ( 'EPS_REDIRECT_URL', plugin_dir_url( __FILE__ ) );
|
| 36 |
-
define ( 'EPS_REDIRECT_VERSION', '2.1.
|
| 37 |
|
| 38 |
register_activation_hook(__FILE__, array('EPS_Redirects', 'eps_redirect_activation'));
|
| 39 |
register_deactivation_hook(__FILE__, array('EPS_Redirects', 'eps_redirect_deactivation'));
|
| 15 |
*
|
| 16 |
* @package EPS 301 Redirects
|
| 17 |
* @author Shawn Wernig ( shawn@eggplantstudios.ca )
|
| 18 |
+
* @version 2.1.2
|
| 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.1.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
|
| 33 |
|
| 34 |
define ( 'EPS_REDIRECT_PATH', plugin_dir_path(__FILE__) );
|
| 35 |
define ( 'EPS_REDIRECT_URL', plugin_dir_url( __FILE__ ) );
|
| 36 |
+
define ( 'EPS_REDIRECT_VERSION', '2.1.2');
|
| 37 |
|
| 38 |
register_activation_hook(__FILE__, array('EPS_Redirects', 'eps_redirect_activation'));
|
| 39 |
register_deactivation_hook(__FILE__, array('EPS_Redirects', 'eps_redirect_deactivation'));
|
eps-form-elements.php
CHANGED
|
@@ -30,8 +30,7 @@ function eps_get_selector( $redirect = false ) {
|
|
| 30 |
$current_post = ( isset( $redirect->url_to ) && is_numeric( $redirect->url_to ) ) ? get_post( intval( $redirect->url_to ) ) : null;
|
| 31 |
|
| 32 |
$post_types = get_post_types(array(
|
| 33 |
-
'public' => true
|
| 34 |
-
'publicly_queryable' => true
|
| 35 |
), 'objects');
|
| 36 |
|
| 37 |
$html = eps_get_type_select($post_types, $current_post);
|
| 30 |
$current_post = ( isset( $redirect->url_to ) && is_numeric( $redirect->url_to ) ) ? get_post( intval( $redirect->url_to ) ) : null;
|
| 31 |
|
| 32 |
$post_types = get_post_types(array(
|
| 33 |
+
'public' => true
|
|
|
|
| 34 |
), 'objects');
|
| 35 |
|
| 36 |
$html = eps_get_type_select($post_types, $current_post);
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: none
|
|
| 4 |
Tags: 301 redirects, redirects
|
| 5 |
Requires at least: 3.0.1
|
| 6 |
Tested up to: 3.8.1
|
| 7 |
-
Stable tag: 2.1.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -92,6 +92,9 @@ Unfortunately this is not supported. You should look into .htaccess redirects fo
|
|
| 92 |
|
| 93 |
== Changelog ==
|
| 94 |
|
|
|
|
|
|
|
|
|
|
| 95 |
= 2.1.1 =
|
| 96 |
Fixed an issue where users with a lot of redirects were being limited, this fix also changed up the admin area. Redirects are now editable via AJAX, and the ‘add new’ form was moved to the top.
|
| 97 |
|
|
@@ -134,6 +137,9 @@ Overhauled the entire plugin. Redirects are stored in their own table. Gracefull
|
|
| 134 |
|
| 135 |
== Upgrade Notice ==
|
| 136 |
|
|
|
|
|
|
|
|
|
|
| 137 |
= 2.1.1 =
|
| 138 |
Fixed an issue where users with a lot of redirects were being limited, this fix also changed up the admin area. Redirects are now editable via AJAX, and the ‘add new’ form was moved to the top.
|
| 139 |
|
| 4 |
Tags: 301 redirects, redirects
|
| 5 |
Requires at least: 3.0.1
|
| 6 |
Tested up to: 3.8.1
|
| 7 |
+
Stable tag: 2.1.2
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 92 |
|
| 93 |
== Changelog ==
|
| 94 |
|
| 95 |
+
= 2.1.2 =
|
| 96 |
+
Minor bug fixes.
|
| 97 |
+
|
| 98 |
= 2.1.1 =
|
| 99 |
Fixed an issue where users with a lot of redirects were being limited, this fix also changed up the admin area. Redirects are now editable via AJAX, and the ‘add new’ form was moved to the top.
|
| 100 |
|
| 137 |
|
| 138 |
== Upgrade Notice ==
|
| 139 |
|
| 140 |
+
= 2.1.2 =
|
| 141 |
+
Minor bug fixes.
|
| 142 |
+
|
| 143 |
= 2.1.1 =
|
| 144 |
Fixed an issue where users with a lot of redirects were being limited, this fix also changed up the admin area. Redirects are now editable via AJAX, and the ‘add new’ form was moved to the top.
|
| 145 |
|
