From: Alexandre Emsenhuber Date: Fri, 1 Oct 2010 16:00:19 +0000 (+0000) Subject: wfOut() -> $this->output() for consistency X-Git-Tag: 1.31.0-rc.0~34715 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=9c2ce8114dc969a653e3fd56fd1df27c2625e1d5;p=lhc%2Fweb%2Fwiklou.git wfOut() -> $this->output() for consistency --- diff --git a/maintenance/populateCategory.php b/maintenance/populateCategory.php index 2376ccef7f..aa796111c9 100644 --- a/maintenance/populateCategory.php +++ b/maintenance/populateCategory.php @@ -115,10 +115,10 @@ TEXT; 'IGNORE' ) ) { - wfOut( "Category population complete.\n" ); + $this->output( "Category population complete.\n" ); return true; } else { - wfOut( "Could not insert category population row.\n" ); + $this->output( "Could not insert category population row.\n" ); return false; } }