Changeset 422302
- Timestamp:
- 08/11/2011 08:54:26 PM (15 years ago)
- Location:
- simplereach-slide/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
srslide.php (modified) (1 diff)
-
srslide_functions.php (modified) (1 diff)
-
srslide_post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simplereach-slide/trunk/readme.txt
r422260 r422302 6 6 Requires at least: 2.7 7 7 Tested up to: 3.2.1 8 Stable tag: 0.5. 18 Stable tag: 0.5.2 9 9 10 10 The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page. … … 58 58 == Changelog == 59 59 60 = 0.5.2 = 61 * Fixed another bug relating to tag escaping 62 60 63 = 0.5.1 = 61 64 * Fixed bug relating to tag escaping -
simplereach-slide/trunk/srslide.php
r422260 r422302 4 4 Plugin URI: https://www.simplereach.com 5 5 Description: After installation, you must click '<a href='options-general.php?page=SimpleReach-Slide'>Settings → SimpleReach Slide</a>' to turn on The Slide. 6 Version: 0.5. 16 Version: 0.5.2 7 7 Author: SimpleReach 8 8 Author URI: https://www.simplereach.com 9 9 */ 10 10 11 define('SRSLIDE_PLUGIN_VERSION', '0.5. 1');11 define('SRSLIDE_PLUGIN_VERSION', '0.5.2'); 12 12 define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__)); 13 13 define('SRSLIDE_PLUGIN_SUPPORT_EMAIL', 'support@simplereach.com'); -
simplereach-slide/trunk/srslide_functions.php
r422260 r422302 124 124 $myTags = array(); 125 125 foreach ($wptags as $tag) { 126 $myTags = (is_object($tag)) ? $tag->name : $tag;126 $myTags[] = (is_object($tag)) ? $tag->name : $tag; 127 127 } 128 128 $tags = join(',', $myTags); -
simplereach-slide/trunk/srslide_post.php
r422192 r422302 130 130 // Set to post tags if the field is empty 131 131 if (empty($tags)) { 132 132 133 foreach (wp_get_post_tags($id) as $tag) { 133 134 $tagset[] = $tag->name;
Note: See TracChangeset
for help on using the changeset viewer.