aboutsummaryrefslogtreecommitdiff
path: root/app/FreshRSS.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-10-06 21:00:02 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-10-06 21:00:02 +0200
commite6e8cac3c4694cdf09e6853ad27fae603272a653 (patch)
treed5f8c9012448ce66eba88c17a9fa137b4e96ec16 /app/FreshRSS.php
parentdfcc40bcae6d9501610f7ee2ffa5d08a7067b8d6 (diff)
Allow extensions for default accout in anonymous mode
https://github.com/FreshRSS/FreshRSS/issues/1257#issuecomment-248111169
Diffstat (limited to 'app/FreshRSS.php')
-rw-r--r--app/FreshRSS.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/FreshRSS.php b/app/FreshRSS.php
index f9c371d27..e4caf23d1 100644
--- a/app/FreshRSS.php
+++ b/app/FreshRSS.php
@@ -49,7 +49,7 @@ class FreshRSS extends Minz_FrontController {
self::initI18n();
self::loadNotifications();
// Enable extensions for the current (logged) user.
- if (FreshRSS_Auth::hasAccess()) {
+ if (FreshRSS_Auth::hasAccess() || $system_conf->allow_anonymous) {
$ext_list = FreshRSS_Context::$user_conf->extensions_enabled;
Minz_ExtensionManager::enableByList($ext_list);
}