From: Platonides Date: Wed, 1 Jun 2011 22:04:44 +0000 (+0000) Subject: Not silly, but parser error (r89263)... fixing X-Git-Tag: 1.31.0-rc.0~29793 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=22508f43d58a8e2fa7946db1c8a5799fcc2417a9;p=lhc%2Fweb%2Fwiklou.git Not silly, but parser error (r89263)... fixing PHP Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE in ExtensionUpdater.php on line 7 --- diff --git a/includes/installer/ExtensionUpdater.php b/includes/installer/ExtensionUpdater.php index 59404579b6..d827af022d 100644 --- a/includes/installer/ExtensionUpdater.php +++ b/includes/installer/ExtensionUpdater.php @@ -4,7 +4,7 @@ class ExtensionUpdater extends DatabaseUpdater { // overload the constructor, so the init and hooks don't get called // while still have all the patching code without duplicating - public __construct( DatabaseBase &$db, $shared, Maintenance $maintenance = null ) { + public function __construct( DatabaseBase &$db, $shared, Maintenance $maintenance = null ) { $this->db = $db; $this->shared = $shared; $this->maintenance = $maintenance;