looks like the function signature changed, fix it.
authorMichael J. Rubinsky <mrubinsk@horde.org>
Sat, 17 Jul 2010 00:51:22 +0000 (20:51 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Sat, 17 Jul 2010 00:51:22 +0000 (20:51 -0400)
kronolith/lib/Ajax/Application.php

index 8acbc32..d3706f0 100644 (file)
@@ -27,9 +27,9 @@ class Kronolith_Ajax_Application extends Horde_Core_Ajax_Application
      * @param string $app     The application name.
      * @param string $action  The AJAX action to perform.
      */
-    public function __construct($app, $action = null)
+    public function __construct($app, $vars, $action = null)
     {
-        parent::__construct($app, $action);
+        parent::__construct($app, $vars, $action);
         $this->_defaultDomain = empty($GLOBALS['conf']['storage']['default_domain']) ? null : $GLOBALS['conf']['storage']['default_domain'];
     }