diff --git a/libraries/joomla/application/module/helper.php b/libraries/joomla/application/module/helper.php index c71dbaf7287be..f03a88067a7f0 100644 --- a/libraries/joomla/application/module/helper.php +++ b/libraries/joomla/application/module/helper.php @@ -431,8 +431,8 @@ public static function moduleCache($module, $moduleparams, $cacheparams) $cache = JFactory::getCache($cacheparams->cachegroup, 'callback'); $conf = JFactory::getConfig(); - // Turn cache off for internal callers if parameters are set to off and for all logged in users - if ($moduleparams->get('owncache', null) === '0' || $conf->get('caching') == 0 || $user->get('id')) + // Turn cache off for internal callers if parameters are set to off + if ($moduleparams->get('owncache', null) === '0' || $conf->get('caching') == 0) { $cache->setCaching(false); }