From: pdontthink Date: Sat, 10 Dec 2016 09:44:15 +0000 (+0000) Subject: Add PHP5-style constructor X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=2a987fe74735d8f5d5021924ac95f49bb13c1e53;p=squirrelmail.git Add PHP5-style constructor git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14613 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/class/mime/Disposition.class.php b/class/mime/Disposition.class.php index 578e08c0..8e69bc29 100644 --- a/class/mime/Disposition.class.php +++ b/class/mime/Disposition.class.php @@ -23,14 +23,22 @@ */ class Disposition { /** - * Constructor function + * Constructor (PHP5 style, required in some future version of PHP) * @param string $name */ - function Disposition($name) { + function __construct($name) { $this->name = $name; $this->properties = array(); } + /** + * Constructor (PHP4 style, kept for compatibility reasons) + * @param string $name + */ + function Disposition($name) { + self::__construct($name); + } + /** * Returns value of content disposition property * @param string $par content disposition property name