Don't require authentication to load javascript. This fixes an infinite redirect...
authorChuck Hagenbuch <chuck@horde.org>
Sun, 4 Jul 2010 19:25:52 +0000 (15:25 -0400)
committerChuck Hagenbuch <chuck@horde.org>
Sun, 4 Jul 2010 19:25:52 +0000 (15:25 -0400)
horde/services/javascript.php

index 0b998fd..9bdcd50 100644 (file)
@@ -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');