diff options
author | jan <jan@jandecaluwe.com> | 2005-03-30 11:50:25 +0200 |
---|---|---|
committer | jan <jan@jandecaluwe.com> | 2005-03-30 11:50:25 +0200 |
commit | 9afe4dbf2e0907d016556ca89d08115ab99ab903 (patch) | |
tree | a556772e026a9480087080a5628214ccb88a83e9 /inc/auth.php | |
parent | 2120eac47b2a91003bc0945a38c64de6e337b8f2 (diff) | |
download | rpg-9afe4dbf2e0907d016556ca89d08115ab99ab903.tar.gz rpg-9afe4dbf2e0907d016556ca89d08115ab99ab903.tar.bz2 |
Replace .* files by _*
darcs-hash:20050330095025-45605-5b5e82865c7fba8e88c43511ae4bf28ebf334d1b.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 e139db4fa..d5af6436a 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -143,7 +143,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['datadir'].'/_cache/_htcookiesalt' * if no such file is found a random key is created and * and stored in this file. * @@ -153,7 +153,7 @@ function auth_browseruid(){ */ function auth_cookiesalt(){ global $conf; - $file = $conf['datadir'].'/.cache/.htcookiesalt'; + $file = $conf['datadir'].'/_cache/_htcookiesalt'; $salt = io_readFile($file); if(empty($salt)){ $salt = uniqid(rand(),true); |