From: Michael J. Rubinsky Date: Sun, 10 Oct 2010 15:54:19 +0000 (-0400) Subject: Need to skip authentication checks here, the application should be responsible for... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c461374ef27ce4b14440fb17b57d47d0e5e34601;p=horde.git Need to skip authentication checks here, the application should be responsible for checking. If 'horde' itself does not give guest read access, then even if another application does grant access, downloading files would be denied. Fix that. Bug: 9294 --- diff --git a/horde/services/download/index.php b/horde/services/download/index.php index e277e2c06..b5f3b01d9 100644 --- a/horde/services/download/index.php +++ b/horde/services/download/index.php @@ -9,7 +9,7 @@ */ require_once dirname(__FILE__) . '/../../lib/Application.php'; -Horde_Registry::appInit('horde', array('session_control' => 'readonly')); +Horde_Registry::appInit('horde', array('session_control' => 'readonly', 'authentication' => 'none')); if (!($module = Horde_Util::getFormData('module')) || !file_exists($registry->get('fileroot', $module))) {