From 92b1e8978f9eec3426a1662cd906820f32ac938b Mon Sep 17 00:00:00 2001 From: pdontthink Date: Sat, 10 Dec 2016 10:42:28 +0000 Subject: [PATCH] Add PHP5-style constructor git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14622 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/addressbook.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/functions/addressbook.php b/functions/addressbook.php index dc6fd834..ae87d670 100644 --- a/functions/addressbook.php +++ b/functions/addressbook.php @@ -425,12 +425,19 @@ class AddressBook { var $add_extra_field = false; /** - * Constructor function. + * Constructor (PHP5 style, required in some future version of PHP) */ - function AddressBook() { + function __construct() { $this->localbackendname = _("Personal Address Book"); } + /** + * Constructor (PHP4 style, kept for compatibility reasons) + */ + function AddressBook() { + self::__construct(); + } + /** * Return an array of backends of a given type, * or all backends if no type is specified. -- 2.25.1