customizable footer text in config

This commit is contained in:
Savetheinternet 2011-12-24 00:51:24 +11:00
parent a144edd924
commit e7eb4e856d
3 changed files with 9 additions and 5 deletions

View file

@ -21,6 +21,7 @@
*
*/
/* Ignore this */
$config = Array(
'db' => Array(),
'cache' => Array(),
@ -38,8 +39,10 @@
'remote' => Array(),
'allowed_ext' => Array(),
'allowed_ext_files' => Array(),
'file_icons' => Array()
'file_icons' => Array(),
'footer' => Array()
);
/* End ignore */
/*
* =======================
@ -465,6 +468,9 @@
// Number of characters in the poster ID (maximum is 40)
$config['poster_id_length'] = 5;
// Page footer
$config['footer'][] = 'All trademarks, copyrights, comments, and images on this page are owned by or are the responsibility of their respective parties.';
// Characters used to generate a random password (with Javascript)
$config['genpassword_chars'] = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+';