Forgot a semicolon
authorRoan Kattouw <catrope@users.mediawiki.org>
Thu, 27 Mar 2008 21:22:02 +0000 (21:22 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Thu, 27 Mar 2008 21:22:02 +0000 (21:22 +0000)
includes/api/ApiParse.php

index df01fad..011c729 100644 (file)
@@ -51,7 +51,7 @@ class ApiParse extends ApiBase {
                if(!is_null($page)) {
                        $titleObj = Title::newFromText($page);
                        if(!$titleObj)
-                               $this->dieUsage("The page you specified doesn't exist", 'missingtitle')
+                               $this->dieUsage("The page you specified doesn't exist", 'missingtitle');
 
                        // Try the parser cache first
                        $articleObj = new Article($titleObj);