From acd1c91af1187f00adfa6272a6beec56eabc3ced Mon Sep 17 00:00:00 2001 From: Daniel Kinzler Date: Wed, 26 Jul 2006 23:35:49 +0000 Subject: [PATCH] fixed include path of AjaxDispatcher.php in index.php --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.20.1