API CHANGE Removed Member::init_db_fields(), its no longer needed due to the Member.PasswordEncyrption property changing from an ENUM to Varchar.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@97818 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-01-30 03:54:17 +00:00 committed by Sam Minnee
parent 5170f33915
commit 4557ba87aa

View File

@ -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
@ -1579,7 +1576,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();
?>
?>