From: Daniel Kinzler Date: Wed, 26 Jul 2006 23:35:49 +0000 (+0000) Subject: fixed include path of AjaxDispatcher.php in index.php X-Git-Tag: 1.31.0-rc.0~56134 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=acd1c91af1187f00adfa6272a6beec56eabc3ced;p=lhc%2Fweb%2Fwiklou.git fixed include path of AjaxDispatcher.php in index.php --- diff --git a/index.php b/index.php index 00a29f2151..bd5ffaba37 100644 --- a/index.php +++ b/index.php @@ -18,7 +18,7 @@ $title = $wgRequest->getVal( 'title' ); # Send Ajax requests to the Ajax dispatcher. # if ( $wgUseAjax && $action == 'ajax' ) { - require_once( 'AjaxDispatcher.php' ); + require_once( $IP . '/includes/AjaxDispatcher.php' ); $dispatcher = new AjaxDispatcher(); $dispatcher->performAction();