Ability to customize default name ("Anonymous")

This commit is contained in:
Savetheinternet 2011-02-17 20:12:09 +11:00
parent 7ecac9937d
commit 5170cd7aa8
2 changed files with 7 additions and 4 deletions

View file

@ -306,10 +306,13 @@
$config['button_newtopic'] = 'New Topic';
$config['button_reply'] = 'New Reply';
// The default name (ie. Anonymous)
$config['anonymous'] = 'Anonymous';
// The string passed to date() for post times
// http://php.net/manual/en/function.date.php
$config['post_date'] = 'm/d/y (D) H:i:s';
$config['post_date'] = 'm/d/y (D) H:i:s';
// Always act as if they had typed "noko" in the email field no mattter what
$config['always_noko'] = false;
$config['always_noko'] = false;
?>