Fixed a typo
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
|
Version 1.16.1 - Apr. 13, 2016
|
||||||
|
Fixed a typo
|
||||||
|
|
||||||
Version 1.16 - Apr. 13, 2016
|
Version 1.16 - Apr. 13, 2016
|
||||||
Use constants for configuration
|
Use constants for configuration
|
||||||
Simplify extreme captcha code generation
|
Simplify extreme captcha code generation
|
||||||
|
4
chat.php
4
chat.php
@ -3323,7 +3323,7 @@ function update_db(){
|
|||||||
}
|
}
|
||||||
$stmt->execute(array($message['text'], $message['id']));
|
$stmt->execute(array($message['text'], $message['id']));
|
||||||
}
|
}
|
||||||
update_setting('msgencrypted', (int)MSGENDCRYPTED);
|
update_setting('msgencrypted', (int) MSGENCRYPTED);
|
||||||
}
|
}
|
||||||
send_update();
|
send_update();
|
||||||
}
|
}
|
||||||
@ -3476,7 +3476,7 @@ function load_lang(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function load_config(){
|
function load_config(){
|
||||||
define('VERSION', '1.16'); // Script version
|
define('VERSION', '1.16.1'); // Script version
|
||||||
define('DBVERSION', 15); // Database version
|
define('DBVERSION', 15); // Database version
|
||||||
define('MSGENCRYPTED', false); // Store messages encrypted in the database to prevent other database users from reading them - true/false - visit the setup page after editing!
|
define('MSGENCRYPTED', false); // Store messages encrypted in the database to prevent other database users from reading them - true/false - visit the setup page after editing!
|
||||||
define('ENCRYPTKEY', 'MY_KEY'); // Encryption key for messages
|
define('ENCRYPTKEY', 'MY_KEY'); // Encryption key for messages
|
||||||
|
Reference in New Issue
Block a user