Expand system.no_auto_update to community, profile statuses and contact conversations pages

- Update setting name and description
This commit is contained in:
Hypolite Petovan 2020-02-23 19:38:24 -05:00
parent 6a3d40ab46
commit e94911620a
4 changed files with 12 additions and 5 deletions

View file

@ -37,7 +37,10 @@ class Community extends CommunityModule
{
self::parseRequest($parameters);
$o = conversation(DI::app(), self::getItems(), 'community', true, false, 'commented', local_user());
$o = '';
if (!empty($_GET['force']) || !DI::pConfig()->get(local_user(), 'system', 'no_auto_update')) {
$o = conversation(DI::app(), self::getItems(), 'community', true, false, 'commented', local_user());
}
System::htmlUpdateExit($o);
}