Version 1.0.1 ()
------------------------------------------------------------------------
+ * Fix multi-authors view only showing first author (garvinhicking)
+
* Fix bug sending comment-notification mails to subscribed users
without an email address (garvinhicking)
- * Chorizo Security Checks: Fixed possible browser-dependant attribute
- injection in the templatechooser-Plugin [NOT REALLY SURE YET IF THIS
- INDEED WAS A BUG. NEEDS CLARITY] (garvinhicking)
-
* Fixed icelandic language bug preventing upgrade (garvinhicking)
Version 1.0 (June 15th, 2006)
}
if (isset($serendipity['GET']['viewAuthor'])) {
- $cond['and'] .= " AND e.authorid = ". (int)$serendipity['GET']['viewAuthor'];
- }
+ $multiauthors = explode(';', $serendipity['GET']['viewAuthor']);
+ $multiauthors_sql = array();
+ foreach($multiauthors AS $multiauthor) {
+ $multiauthors_sql[] = 'e.authorid = ' . (int)$multiauthor;
+ }
+ $cond['and'] .= ' AND (' . implode(' OR ', $multiauthors_sql) . ')';
+ }
$cat_sql = '';
if (isset($serendipity['GET']['category'])) {