follow up r53582: remove duped line :/
[lhc/web/wiklou.git] / api.php
diff --git a/api.php b/api.php
index 8702ce1..e031dfa 100644 (file)
--- a/api.php
+++ b/api.php
@@ -70,11 +70,11 @@ if (!$wgEnableAPI) {
 }
 
 // So extensions can check whether they're running in API mode
-define('API', true);
+define('MW_API', true);
 
 // Set a dummy $wgTitle, because $wgTitle == null breaks various things
 // In a perfect world this wouldn't be necessary
-$wgTitle = Title::newFromTitle('API');
+$wgTitle = Title::newFromText('API');
 
 /* Construct an ApiMain with the arguments passed via the URL. What we get back
  * is some form of an ApiMain, possibly even one that produces an error message,