Simply Exclude - Version 1.7.9.2

Version Description

Very small correction to table row elements which were not properly closed. This seemed to effect FireFox 5.0.1 Thanks for Frank for reporting this issue: http://www.codehooligans.com/projects/wordpress/simply-exclude/#comment-107073

Download this release

Release Info

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

Code changes from version 1.7.9.1 to 1.7.9.2

Files changed (2) hide show
  1. readme.txt +8 -2
  2. simplyexclude.php +10 -15
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Paul Menard
3
  Donate link: http://www.codehooligans.com/donations/
4
  Tags: admin, posts, pages, categories, tags, exclude, include, is_front, is_archive, is_search, is_feed
5
  Requires at least: 2.8
6
- Tested up to: 3.1
7
- Stable tag: 1.7.9.1
8
 
9
  == Description ==
10
 
@@ -49,6 +49,12 @@ At the time (version 1.6.1) the plugin only effects Pages included in the tradit
49
 
50
  == Changelog ==
51
 
 
 
 
 
 
 
52
  = 1.7.9.1 =
53
  More fixes for compatibility issues with WordPress 3.1. Some of these issues reported are:
54
 
3
  Donate link: http://www.codehooligans.com/donations/
4
  Tags: admin, posts, pages, categories, tags, exclude, include, is_front, is_archive, is_search, is_feed
5
  Requires at least: 2.8
6
+ Tested up to: 3.2
7
+ Stable tag: 1.7.9.2
8
 
9
  == Description ==
10
 
49
 
50
  == Changelog ==
51
 
52
+ = 1.7.9.2 =
53
+
54
+ Very small correction to table row elements which were not properly closed. This seemed to effect FireFox 5.0.1
55
+ Thanks for Frank for reporting this issue:
56
+ http://www.codehooligans.com/projects/wordpress/simply-exclude/#comment-107073
57
+
58
  = 1.7.9.1 =
59
  More fixes for compatibility issues with WordPress 3.1. Some of these issues reported are:
60
 
simplyexclude.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Simply Exclude
4
  Plugin URI: http://www.codehooligans.com/projects/wordpress/simply-exclude/
5
  Description: Provides an interface to selectively exclude/include categories, tags and page from the 4 actions used by WordPress. is_front, is_archive, is_search, is_feed, is_front.
6
  Author: Paul Menard
7
- Version: 1.7.9.1
8
  Author URI: http://www.codehooligans.com
9
 
10
  */
@@ -632,7 +632,7 @@ class SimplyExclude
632
  && ($this->se_cfg['cats']['actions'][$action_key] == 'e'))
633
  echo "checked='checked'"; ?> /> Exclude
634
  </td>
635
- <tr>
636
  <?php
637
  }
638
 
@@ -654,7 +654,7 @@ class SimplyExclude
654
  && ($this->se_cfg['cats']['extra']['wp_list_categories'] == 'No'))
655
  echo "checked='checked'"; ?> /> No
656
  </td>
657
- <tr>
658
  </tbody>
659
  </table>
660
  <br />
@@ -686,7 +686,6 @@ class SimplyExclude
686
  </tr>
687
  </tbody>
688
  </table>
689
- </p></div>
690
  </form>
691
  <?php
692
  }
@@ -812,7 +811,7 @@ class SimplyExclude
812
  <?php if ($this->se_cfg['tags']['actions'][$action_key] == 'e')
813
  echo "checked='checked'"; ?> /> Exclude
814
  </td>
815
- <tr>
816
  <?php
817
  }
818
  $class = ('alternate' == $class) ? '' : 'alternate';
@@ -833,7 +832,7 @@ class SimplyExclude
833
  && ($this->se_cfg['tags']['extra']['wp_tag_cloud'] == 'No'))
834
  echo "checked='checked'"; ?> /> No
835
  </td>
836
- <tr>
837
 
838
  </tbody>
839
  </table>
@@ -864,7 +863,6 @@ class SimplyExclude
864
  </tr>
865
  </tbody>
866
  </table>
867
- </p></div>
868
  </form>
869
  <?php
870
  }
@@ -979,7 +977,7 @@ class SimplyExclude
979
  <?php if ($this->se_cfg['authors']['actions'][$action_key] == 'e')
980
  echo "checked='checked'"; ?> /> Exclude
981
  </td>
982
- <tr>
983
  <?php
984
  }
985
  ?>
@@ -1012,7 +1010,6 @@ class SimplyExclude
1012
  </tr>
1013
  </tbody>
1014
  </table>
1015
- </p></div>
1016
  </form>
1017
  <?php
1018
  }
@@ -1150,7 +1147,7 @@ class SimplyExclude
1150
  && ($this->se_cfg['pages']['actions'][$action_key] == 'e'))
1151
  echo "checked='checked'"; ?> /> Exclude
1152
  </td>
1153
- <tr>
1154
  <?php
1155
  }
1156
  ?>
@@ -1184,8 +1181,7 @@ class SimplyExclude
1184
  </td>
1185
  </tr>
1186
  </tbody>
1187
- </table>
1188
-
1189
  </form>
1190
  <?php
1191
  //$this->se_check_google_sitemap_exclude(1);
@@ -1419,7 +1415,7 @@ class SimplyExclude
1419
  ?>
1420
 
1421
  </td>
1422
- <tr>
1423
  <?php
1424
  }
1425
  ?>
@@ -1433,8 +1429,7 @@ class SimplyExclude
1433
  </tr>
1434
 
1435
  </tbody>
1436
- </table>
1437
-
1438
  </form>
1439
  <?php
1440
  }
4
  Plugin URI: http://www.codehooligans.com/projects/wordpress/simply-exclude/
5
  Description: Provides an interface to selectively exclude/include categories, tags and page from the 4 actions used by WordPress. is_front, is_archive, is_search, is_feed, is_front.
6
  Author: Paul Menard
7
+ Version: 1.7.9.2
8
  Author URI: http://www.codehooligans.com
9
 
10
  */
632
  && ($this->se_cfg['cats']['actions'][$action_key] == 'e'))
633
  echo "checked='checked'"; ?> /> Exclude
634
  </td>
635
+ </tr>
636
  <?php
637
  }
638
 
654
  && ($this->se_cfg['cats']['extra']['wp_list_categories'] == 'No'))
655
  echo "checked='checked'"; ?> /> No
656
  </td>
657
+ </tr>
658
  </tbody>
659
  </table>
660
  <br />
686
  </tr>
687
  </tbody>
688
  </table>
 
689
  </form>
690
  <?php
691
  }
811
  <?php if ($this->se_cfg['tags']['actions'][$action_key] == 'e')
812
  echo "checked='checked'"; ?> /> Exclude
813
  </td>
814
+ </tr>
815
  <?php
816
  }
817
  $class = ('alternate' == $class) ? '' : 'alternate';
832
  && ($this->se_cfg['tags']['extra']['wp_tag_cloud'] == 'No'))
833
  echo "checked='checked'"; ?> /> No
834
  </td>
835
+ </tr>
836
 
837
  </tbody>
838
  </table>
863
  </tr>
864
  </tbody>
865
  </table>
 
866
  </form>
867
  <?php
868
  }
977
  <?php if ($this->se_cfg['authors']['actions'][$action_key] == 'e')
978
  echo "checked='checked'"; ?> /> Exclude
979
  </td>
980
+ </tr>
981
  <?php
982
  }
983
  ?>
1010
  </tr>
1011
  </tbody>
1012
  </table>
 
1013
  </form>
1014
  <?php
1015
  }
1147
  && ($this->se_cfg['pages']['actions'][$action_key] == 'e'))
1148
  echo "checked='checked'"; ?> /> Exclude
1149
  </td>
1150
+ </tr>
1151
  <?php
1152
  }
1153
  ?>
1181
  </td>
1182
  </tr>
1183
  </tbody>
1184
+ </table>
 
1185
  </form>
1186
  <?php
1187
  //$this->se_check_google_sitemap_exclude(1);
1415
  ?>
1416
 
1417
  </td>
1418
+ </tr>
1419
  <?php
1420
  }
1421
  ?>
1429
  </tr>
1430
 
1431
  </tbody>
1432
+ </table>
 
1433
  </form>
1434
  <?php
1435
  }