From feb30e194f364cc31394b0689302dbf7bb5e566f Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 12 Apr 2010 23:40:58 +0000 Subject: [PATCH] API CHANGE Removed Member::init_db_fields(), its no longer needed due to the Member.PasswordEncyrption property changing from an ENUM to Varchar. (from r97818) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102535 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- security/Member.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/security/Member.php b/security/Member.php index 4134a47d5..0de1b2d6c 100755 --- a/security/Member.php +++ b/security/Member.php @@ -102,9 +102,6 @@ class Member extends DataObject { */ protected static $login_marker_cookie = null; - public static function init_db_fields() { - } - /** * If this is called, then a session cookie will be set to "1" whenever a user * logs in. This lets 3rd party tools, such as apache's mod_rewrite, detect @@ -1642,7 +1639,4 @@ class Member_Validator extends RequiredFields { return $js; } } -// Initialize the static DB variables to add the supported encryption -// algorithms to the PasswordEncryption Enum field -Member::init_db_fields(); -?> +?> \ No newline at end of file