fixed include path of AjaxDispatcher.php in index.php

This commit is contained in:
Daniel Kinzler 2006-07-26 23:35:49 +00:00
parent 80249cf6cb
commit acd1c91af1

View file

@ -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();