From c461374ef27ce4b14440fb17b57d47d0e5e34601 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Sun, 10 Oct 2010 11:54:19 -0400 Subject: [PATCH] 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 --- horde/services/download/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) { -- 2.11.0