fixed include path of AjaxDispatcher.php in index.php
authorDaniel Kinzler <daniel@users.mediawiki.org>
Wed, 26 Jul 2006 23:35:49 +0000 (23:35 +0000)
committerDaniel Kinzler <daniel@users.mediawiki.org>
Wed, 26 Jul 2006 23:35:49 +0000 (23:35 +0000)
index.php

index 00a29f2..bd5ffab 100644 (file)
--- 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();