Forgot a semicolon
This commit is contained in:
parent
a1e4f7a51c
commit
3535473571
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue