Index: branches/REL1_9/phase3/index.php |
— | — | @@ -14,6 +14,11 @@ |
15 | 15 | $action = $wgRequest->getVal( 'action', 'view' ); |
16 | 16 | $title = $wgRequest->getVal( 'title' ); |
17 | 17 | |
| 18 | +$wgTitle = $mediaWiki->checkInitialQueries( $title,$action,$wgOut, $wgRequest, $wgContLang ); |
| 19 | +if ($wgTitle == NULL) { |
| 20 | + unset( $wgTitle ); |
| 21 | +} |
| 22 | + |
18 | 23 | # |
19 | 24 | # Send Ajax requests to the Ajax dispatcher. |
20 | 25 | # |
— | — | @@ -26,10 +31,6 @@ |
27 | 32 | exit; |
28 | 33 | } |
29 | 34 | |
30 | | -$wgTitle = $mediaWiki->checkInitialQueries( $title,$action,$wgOut, $wgRequest, $wgContLang ); |
31 | | -if ($wgTitle == NULL) { |
32 | | - unset( $wgTitle ); |
33 | | -} |
34 | 35 | |
35 | 36 | wfProfileOut( 'main-misc-setup' ); |
36 | 37 | |
Index: branches/REL1_9/phase3/RELEASE-NOTES |
— | — | @@ -18,6 +18,7 @@ |
19 | 19 | * (bug 8641) Fix order of updates to ipblocks table for updates from <=1.7 |
20 | 20 | * (bug 8673) Minor fix for web service API content-type header |
21 | 21 | * Fix API revision list on PHP 5.2.1; bad reference assignment |
| 22 | +* Fixed up the AjaxSearch |
22 | 23 | |
23 | 24 | |
24 | 25 | == MediaWiki 1.9 == |