Version 1.3 ()
------------------------------------------------------------------------
+ * Fix sidebar plugin for the author's list to not include counting
+ drafted articles (garvinhicking)
+
* Add option "template" to smarty function call {serendipity_
printSidebar} (garvinhicking)
if ($is_count) {
$query_select = ", count(e.authorid) as artcount";
$query_join = "LEFT OUTER JOIN {$serendipity['dbPrefix']}entries AS e
- ON a.authorid = e.authorid";
+ ON (a.authorid = e.authorid AND e.isdraft = 'false')";
}
if ($is_count || $group != null) {