Changeset 422462
- Timestamp:
- 08/12/2011 03:09:36 AM (15 years ago)
- Location:
- simplereach-slide/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
srslide.php (modified) (1 diff)
-
srslide_post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simplereach-slide/trunk/readme.txt
r422302 r422462 6 6 Requires at least: 2.7 7 7 Tested up to: 3.2.1 8 Stable tag: 0.5. 28 Stable tag: 0.5.3 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. … … 50 50 51 51 == Upgrade Notice == 52 * Do not use version 0.5.0. There is a bug in tags that can prevent the page from loading properly.52 * Do not use versions 0.5.0 - 0.5.2. There is a bug in tags that can prevent the page from loading properly. 53 53 54 54 == Screenshots == … … 57 57 58 58 == Changelog == 59 60 = 0.5.3 = 61 * Better publish error checking 62 * Fixed a bug in publishing 59 63 60 64 = 0.5.2 = -
simplereach-slide/trunk/srslide.php
r422302 r422462 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. 26 Version: 0.5.3 7 7 Author: SimpleReach 8 8 Author URI: https://www.simplereach.com 9 9 */ 10 10 11 define('SRSLIDE_PLUGIN_VERSION', '0.5. 2');11 define('SRSLIDE_PLUGIN_VERSION', '0.5.3'); 12 12 define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__)); 13 13 define('SRSLIDE_PLUGIN_SUPPORT_EMAIL', 'support@simplereach.com'); -
simplereach-slide/trunk/srslide_post.php
r422302 r422462 123 123 // Set to post title if the field is empty 124 124 if (empty($title)) { 125 add_post_meta($id, '_srslide_title', $_POST['post_title']); 125 if (!empty($_POST['post_title'])) { 126 add_post_meta($id, '_srslide_title', $_POST['post_title']); 127 } 126 128 } else { 127 129 add_post_meta($id, '_srslide_title', $title); … … 130 132 // Set to post tags if the field is empty 131 133 if (empty($tags)) { 132 134 $tagset = array(); 133 135 foreach (wp_get_post_tags($id) as $tag) { 134 136 $tagset[] = $tag->name;
Note: See TracChangeset
for help on using the changeset viewer.