Changeset 466444
- Timestamp:
- 11/23/2011 12:40:40 PM (14 years ago)
- Location:
- docs-auto-tags/trunk
- Files:
-
- 2 edited
-
docs-auto-tags.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
docs-auto-tags/trunk/docs-auto-tags.php
r372739 r466444 4 4 Plugin URI: http://wordpress.org/extend/plugins/docs-auto-tags/ 5 5 Description: Assigns tags to posts containing specific text strings, handy for filtering within the loop. See query_posts() in the Codex for including/excluding posts by tag. 6 Version: 0. 46 Version: 0.5 7 7 Author: John LeBlanc 8 8 Author URI: http://johnleblanc.com … … 96 96 97 97 <?php $i=0; ?> 98 <?php if ( count($options) > 0 ): ?>98 <?php if ( is_array($options) && count($options) > 0 ): ?> 99 99 <?php foreach ( $options as $pattern => $tags ) : ?> 100 100 <div id="rule-<?php echo $i ?>"> -
docs-auto-tags/trunk/readme.txt
r373171 r466444 20 20 21 21 == Changelog == 22 23 = 0.5 = 24 Fixed "Warning: Invalid argument supplied for foreach()" error http://wordpress.org/support/topic/plugin-docs-auto-tags-error-message-on-settings-page-after-install?replies=1#post-2456270 22 25 23 26 = 0.4 =
Note: See TracChangeset
for help on using the changeset viewer.