From 1601d9235a69dff26f23263d53228d632985a71d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 27 Jan 2016 15:17:25 +0100 Subject: Make enable_avatars setting more robust * handles the setting in the same way everywhere * fixes #21949 --- settings/users.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'settings/users.php') diff --git a/settings/users.php b/settings/users.php index 9d89ff65b4a..0dff85c1ade 100644 --- a/settings/users.php +++ b/settings/users.php @@ -116,7 +116,7 @@ $tmpl->assign('quota_preset', $quotaPreset); $tmpl->assign('default_quota', $defaultQuota); $tmpl->assign('defaultQuotaIsUserDefined', $defaultQuotaIsUserDefined); $tmpl->assign('recoveryAdminEnabled', $recoveryAdminEnabled); -$tmpl->assign('enableAvatars', \OC::$server->getConfig()->getSystemValue('enable_avatars', true)); +$tmpl->assign('enableAvatars', \OC::$server->getConfig()->getSystemValue('enable_avatars', true) === true); $tmpl->assign('show_storage_location', $config->getAppValue('core', 'umgmt_show_storage_location', 'false')); $tmpl->assign('show_last_login', $config->getAppValue('core', 'umgmt_show_last_login', 'false')); -- cgit v1.2.3