Changeset 389118
- Timestamp:
- 05/25/2011 09:27:59 PM (15 years ago)
- Location:
- list-drafts-widget
- Files:
-
- 4 edited
- 1 copied
-
tags/2.1 (copied) (copied from list-drafts-widget/trunk)
-
tags/2.1/list-drafts.php (modified) (3 diffs)
-
tags/2.1/readme.txt (modified) (2 diffs)
-
trunk/list-drafts.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
list-drafts-widget/tags/2.1/list-drafts.php
r217525 r389118 4 4 Plugin URI: http://losingit.me.uk/2010/03/14/list-drafts-widget-revisited 5 5 Description: A sidebar widget that lists the titles of draft posts 6 Version: 2. 0.16 Version: 2.1 7 7 Author: Les Bessant 8 8 Author URI: http://losingit.me.uk/ … … 12 12 /* 13 13 List Drafts Widget: 14 Copyright (c) 2008-201 0Les Bessant14 Copyright (c) 2008-2011 Les Bessant 15 15 16 16 This program is free software; you can redistribute it and/or modify … … 91 91 */ 92 92 global $wpdb; 93 $my_drafts = $wpdb->get_results("SELECT post_title FROM $wpdb->posts WHERE post_ status = 'draft'");93 $my_drafts = $wpdb->get_results("SELECT post_title FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'draft'"); 94 94 if ($my_drafts) { 95 95 -
list-drafts-widget/tags/2.1/readme.txt
r217525 r389118 3 3 Tags: draft, drafts, sidebar, widget 4 4 Requires at least: 2.8 5 Tested up to: 3. 0-Alpha6 Stable tag: 2. 0.15 Tested up to: 3.1.3 6 Stable tag: 2.1 7 7 8 8 Outputs an unordered list of the titles of saved draft posts in a sidebar widget. … … 34 34 35 35 == Changelog == 36 = 2.1 = 37 * Bugfix: As menu items are a special kind of post, and can have a status of "Draft", under some circumstances these would be picked up as untitled posts by the widget. This version now checks for 'post_type' being "post", which will prevent this behaviour. 36 38 37 39 = 2.0.1 = -
list-drafts-widget/trunk/list-drafts.php
r217525 r389118 4 4 Plugin URI: http://losingit.me.uk/2010/03/14/list-drafts-widget-revisited 5 5 Description: A sidebar widget that lists the titles of draft posts 6 Version: 2. 0.16 Version: 2.1 7 7 Author: Les Bessant 8 8 Author URI: http://losingit.me.uk/ … … 12 12 /* 13 13 List Drafts Widget: 14 Copyright (c) 2008-201 0Les Bessant14 Copyright (c) 2008-2011 Les Bessant 15 15 16 16 This program is free software; you can redistribute it and/or modify … … 91 91 */ 92 92 global $wpdb; 93 $my_drafts = $wpdb->get_results("SELECT post_title FROM $wpdb->posts WHERE post_ status = 'draft'");93 $my_drafts = $wpdb->get_results("SELECT post_title FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'draft'"); 94 94 if ($my_drafts) { 95 95 -
list-drafts-widget/trunk/readme.txt
r217525 r389118 3 3 Tags: draft, drafts, sidebar, widget 4 4 Requires at least: 2.8 5 Tested up to: 3. 0-Alpha6 Stable tag: 2. 0.15 Tested up to: 3.1.3 6 Stable tag: 2.1 7 7 8 8 Outputs an unordered list of the titles of saved draft posts in a sidebar widget. … … 34 34 35 35 == Changelog == 36 = 2.1 = 37 * Bugfix: As menu items are a special kind of post, and can have a status of "Draft", under some circumstances these would be picked up as untitled posts by the widget. This version now checks for 'post_type' being "post", which will prevent this behaviour. 36 38 37 39 = 2.0.1 =
Note: See TracChangeset
for help on using the changeset viewer.