Archived
1
0

* Added ability to mark authorgroups as "hidden", so that members of such groups are excluded from common author listings. (Ref http://board.s9y.org/viewtopic.php?f=11&t=16237) (garvinhicking)

This commit is contained in:
Garvin Hicking
2010-01-13 12:28:55 +00:00
parent 456423e040
commit 316e86f3dc
8 changed files with 25 additions and 10 deletions
+1 -1
View File
@@ -1804,7 +1804,7 @@ class serendipity_authors_plugin extends serendipity_plugin {
$is_form = serendipity_db_bool($this->get_config('allow_select'));
$is_count = serendipity_db_bool($this->get_config('showartcount'));
$mincount = (int)$this->get_config('mincount');
$authors = serendipity_fetchUsers(null, null, $is_count);
$authors = serendipity_fetchUsers(null, 'hidden', $is_count);
$html = '';
if ($is_form) {