From: Ben Klang Date: Thu, 31 Dec 2009 21:50:08 +0000 (-0500) Subject: Shout: convert constructor to PHP5 syntax X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6665c860a6554e29002f454ddefc8faf515620ab;p=horde.git Shout: convert constructor to PHP5 syntax --- diff --git a/shout/lib/Driver.php b/shout/lib/Driver.php index 421afd3e2..acb9c41e5 100644 --- a/shout/lib/Driver.php +++ b/shout/lib/Driver.php @@ -24,7 +24,7 @@ class Shout_Driver { */ var $_params = array(); - function Shout_Driver($params = array()) + function __construct($params = array()) { $this->_params = $params; }