From a55a240fee0e6fe4908e44211fd25f70e68a7b2a Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sun, 4 Jul 2010 15:25:52 -0400 Subject: [PATCH] Don't require authentication to load javascript. This fixes an infinite redirect cyle trying to load open_calendar.js for me. --- horde/services/javascript.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/services/javascript.php b/horde/services/javascript.php index 0b998fd26..9bdcd50e5 100644 --- a/horde/services/javascript.php +++ b/horde/services/javascript.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('authentication' => 'none', 'session_control' => 'readonly')); // Figure out if we've been inlined, or called directly. $send_headers = strstr($_SERVER['PHP_SELF'], 'javascript.php'); -- 2.11.0