diff options
author | andi <andi@splitbrain.org> | 2005-06-26 12:09:13 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-06-26 12:09:13 +0200 |
commit | 98407a7ab8cdc6e868009187f47cc7768449a3c9 (patch) | |
tree | 81ff92e45a1ec0db93dadbbf24fbab1f17cea434 /inc/auth.php | |
parent | d477fdcf1c8e21ef479942fe1d14acb7991d8a4a (diff) | |
download | rpg-98407a7ab8cdc6e868009187f47cc7768449a3c9.tar.gz rpg-98407a7ab8cdc6e868009187f47cc7768449a3c9.tar.bz2 |
directory cleanup
This cleans up the directory structure as discussed on the mailning
list. Users should delete their previous _cache directories to
recover diskspace.
darcs-hash:20050626100913-9977f-83c0fdc32047db2090fc52a843ffae50cbf12248.gz
Diffstat (limited to 'inc/auth.php')
-rw-r--r-- | inc/auth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php index fdf5d17f3..da3d770d1 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -148,7 +148,7 @@ function auth_browseruid(){ * Creates a random key to encrypt the password in cookies * * This function tries to read the password for encrypting - * cookies from $conf['datadir'].'/_cache/_htcookiesalt' + * cookies from $conf['metadir'].'/_htcookiesalt' * if no such file is found a random key is created and * and stored in this file. * @@ -158,7 +158,7 @@ function auth_browseruid(){ */ function auth_cookiesalt(){ global $conf; - $file = $conf['datadir'].'/_cache/_htcookiesalt'; + $file = $conf['metadir'].'/_htcookiesalt'; $salt = io_readFile($file); if(empty($salt)){ $salt = uniqid(rand(),true); |