Replace rogue instance of "contacts" by "contact" (#5891)

This commit is contained in:
Hypolite Petovan 2018-12-07 00:50:49 -05:00
parent dea1a98a5d
commit a3c1beb265
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ use Friendica\Util\Strings;
function group_init(App $a) { function group_init(App $a) {
if (local_user()) { if (local_user()) {
$a->page['aside'] = Model\Group::sidebarWidget('contacts', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone')); $a->page['aside'] = Model\Group::sidebarWidget('contact', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone'));
} }
} }