From: Chuck Hagenbuch Date: Sun, 4 Jul 2010 19:25:52 +0000 (-0400) Subject: Don't require authentication to load javascript. This fixes an infinite redirect... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a55a240fee0e6fe4908e44211fd25f70e68a7b2a;p=horde.git Don't require authentication to load javascript. This fixes an infinite redirect cyle trying to load open_calendar.js for me. --- 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');