mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-29 17:54:29 +01:00
Merge branch 'master' of https://github.com/ctrlcctrlv/Tinyboard
This commit is contained in:
commit
52a6bec437
@ -154,6 +154,9 @@
|
|||||||
// Make this something long and random for security.
|
// Make this something long and random for security.
|
||||||
$config['cookies']['salt'] = 'abcdefghijklmnopqrstuvwxyz09123456789!@#$%^&*()';
|
$config['cookies']['salt'] = 'abcdefghijklmnopqrstuvwxyz09123456789!@#$%^&*()';
|
||||||
|
|
||||||
|
// Whether or not you can access the mod cookie in JavaScript. Most users should not need to change this.
|
||||||
|
$config['cookies']['httponly'] = true;
|
||||||
|
|
||||||
// Used to salt secure tripcodes ("##trip") and poster IDs (if enabled).
|
// Used to salt secure tripcodes ("##trip") and poster IDs (if enabled).
|
||||||
$config['secure_trip_salt'] = ')(*&^%$#@!98765432190zyxwvutsrqponmlkjihgfedcba';
|
$config['secure_trip_salt'] = ')(*&^%$#@!98765432190zyxwvutsrqponmlkjihgfedcba';
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ function setCookies() {
|
|||||||
$mod['hash'][0] . // password
|
$mod['hash'][0] . // password
|
||||||
':' .
|
':' .
|
||||||
$mod['hash'][1], // salt
|
$mod['hash'][1], // salt
|
||||||
time() + $config['cookies']['expire'], $config['cookies']['jail'] ? $config['cookies']['path'] : '/', null, false, true);
|
time() + $config['cookies']['expire'], $config['cookies']['jail'] ? $config['cookies']['path'] : '/', null, false, $config['cookies']['httponly']);
|
||||||
}
|
}
|
||||||
|
|
||||||
function destroyCookies() {
|
function destroyCookies() {
|
||||||
|
Loading…
Reference in New Issue
Block a user