From: Roan Kattouw Date: Thu, 27 Mar 2008 21:22:02 +0000 (+0000) Subject: Forgot a semicolon X-Git-Tag: 1.31.0-rc.0~48767 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=353547357161e11a3123ada601abae97feeae787;p=lhc%2Fweb%2Fwiklou.git Forgot a semicolon --- diff --git a/includes/api/ApiParse.php b/includes/api/ApiParse.php index df01fad4a8..011c729062 100644 --- a/includes/api/ApiParse.php +++ b/includes/api/ApiParse.php @@ -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);