Simply Exclude - Version 1.7.2.1

Version Description

Download this release

Release Info

Developer pmenard
Plugin Icon wp plugin Simply Exclude
Version 1.7.2.1
Comparing to
See all releases

Code changes from version 1.7.2 to 1.7.2.1

Files changed (2) hide show
  1. readme.txt +3 -2
  2. simplyexclude.php +6 -0
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Paul Menard
3
  Donate link: http://www.codehooligans.com
4
  Tags: admin, posts, pages, categories, tags, exclude, include, is_front, is_archive, is_search, is_feed
5
  Requires at least: 2.3
6
- Tested up to: 2.7
7
- Stable tag: 1.7.2
8
 
9
  == Description ==
10
 
@@ -56,4 +56,5 @@ At the time (version 1.6.1) the plugin only effects Pages included in the tradit
56
  1.7 - 2008-05-29 Added Author to the Include/Exclude logic. Now you can exclude Author's Posts from Search, Home, RSS, Archive.
57
  1.7.1 - 2008-07-16 Fixed an issue with WP 2.6 where it automatically decided to unserialize the option data structure.
58
  1.7.2 - 2009-02.05 Fixed some PHP warning by checking variable is set. Also added style to 2.7 interface.
 
59
  </p>
3
  Donate link: http://www.codehooligans.com
4
  Tags: admin, posts, pages, categories, tags, exclude, include, is_front, is_archive, is_search, is_feed
5
  Requires at least: 2.3
6
+ Tested up to: 2.8
7
+ Stable tag: 1.7.2.1
8
 
9
  == Description ==
10
 
56
  1.7 - 2008-05-29 Added Author to the Include/Exclude logic. Now you can exclude Author's Posts from Search, Home, RSS, Archive.
57
  1.7.1 - 2008-07-16 Fixed an issue with WP 2.6 where it automatically decided to unserialize the option data structure.
58
  1.7.2 - 2009-02.05 Fixed some PHP warning by checking variable is set. Also added style to 2.7 interface.
59
+ 1.7.2.1 - 2009-07.01 Fixed some PHP warning by checking variable is set. Also added style for 2.8 interface. Very minor changes.
60
  </p>
simplyexclude.php CHANGED
@@ -15,6 +15,7 @@ Revision history
15
  1.7 - 2008-05-29 Added Author to the Include/Exclude logic. Now you can exclude Author's Posts from Search, Home, RSS, Archive.
16
  1.7.1 - 2008-07-16 Fixed an issue with WP 2.6 where it automatically decided to unserialize the option data structure.
17
  1.7.2 - 2009-02.05 Fixed some PHP warning by checking variable is set. Also added style to 2.7 interface.
 
18
  */
19
 
20
  class SimplyExclude
@@ -293,8 +294,13 @@ class SimplyExclude
293
 
294
  function se_manage_page()
295
  {
 
 
296
  if (isset($_REQUEST['se_admin']))
 
297
  $se_admin = $_REQUEST['se_admin'];
 
 
298
  else
299
  $se_admin['action'] = 'edit_categories';
300
 
15
  1.7 - 2008-05-29 Added Author to the Include/Exclude logic. Now you can exclude Author's Posts from Search, Home, RSS, Archive.
16
  1.7.1 - 2008-07-16 Fixed an issue with WP 2.6 where it automatically decided to unserialize the option data structure.
17
  1.7.2 - 2009-02.05 Fixed some PHP warning by checking variable is set. Also added style to 2.7 interface.
18
+ 1.7.2.1 - 2009-07.01 Fixed some PHP warning by checking variable is set. Also added style for 2.8 interface. Very minor changes.
19
  */
20
 
21
  class SimplyExclude
294
 
295
  function se_manage_page()
296
  {
297
+ //echo "_REQUEST<pre>"; print_r($_REQUEST); echo "</pre>";
298
+
299
  if (isset($_REQUEST['se_admin']))
300
+ {
301
  $se_admin = $_REQUEST['se_admin'];
302
+ $se_admin['action'] = $_GET['se_admin']['action'];
303
+ }
304
  else
305
  $se_admin['action'] = 'edit_categories';
306