diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-02-26 17:30:44 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-02-26 17:30:44 +0100 |
commit | 83bdc4bc426e838498bb89d3d2daa50463bf192b (patch) | |
tree | 8c5538467a768129a0adcc394287adf165bfb6b6 /system/application/models/file_mod.php | |
parent | ef0ec479b22fba60acbd92914b56295e296a0e7c (diff) |
move password salt to config
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system/application/models/file_mod.php')
-rw-r--r-- | system/application/models/file_mod.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index fae20492c..23c3002af 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -66,8 +66,7 @@ class File_mod extends Model { function hash_password($password) { - // TODO: move salt to config - return sha1('w9yFMeU6ITrkrPBlRJfA'.$password); + return sha1($this->config->item('passwordsalt').$password); } private function unused_file($hash) |