Ability to customize default name ("Anonymous")
This commit is contained in:
parent
7ecac9937d
commit
5170cd7aa8
@ -306,10 +306,13 @@
|
|||||||
$config['button_newtopic'] = 'New Topic';
|
$config['button_newtopic'] = 'New Topic';
|
||||||
$config['button_reply'] = 'New Reply';
|
$config['button_reply'] = 'New Reply';
|
||||||
|
|
||||||
|
// The default name (ie. Anonymous)
|
||||||
|
$config['anonymous'] = 'Anonymous';
|
||||||
|
|
||||||
// The string passed to date() for post times
|
// The string passed to date() for post times
|
||||||
// http://php.net/manual/en/function.date.php
|
// 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
|
// Always act as if they had typed "noko" in the email field no mattter what
|
||||||
$config['always_noko'] = false;
|
$config['always_noko'] = false;
|
||||||
?>
|
?>
|
4
post.php
4
post.php
@ -142,7 +142,7 @@
|
|||||||
error($config['error']['noimage']);
|
error($config['error']['noimage']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$post['name'] = (!empty($_POST['name'])?$_POST['name']:'Anonymous');
|
$post['name'] = (!empty($_POST['name'])?$_POST['name']:$config['anonymous']);
|
||||||
$post['subject'] = $_POST['subject'];
|
$post['subject'] = $_POST['subject'];
|
||||||
$post['email'] = utf8tohtml($_POST['email']);
|
$post['email'] = utf8tohtml($_POST['email']);
|
||||||
$post['body'] = $_POST['body'];
|
$post['body'] = $_POST['body'];
|
||||||
@ -189,7 +189,7 @@
|
|||||||
if($mod && $mod['type'] >= MOD && preg_match('/^((.+) )?## (.+)$/', $post['name'], $match)) {
|
if($mod && $mod['type'] >= MOD && preg_match('/^((.+) )?## (.+)$/', $post['name'], $match)) {
|
||||||
if(($mod['type'] == MOD && $match[3] == 'Mod') || $mod['type'] >= ADMIN) {
|
if(($mod['type'] == MOD && $match[3] == 'Mod') || $mod['type'] >= ADMIN) {
|
||||||
$post['mod_tag'] = $match[3];
|
$post['mod_tag'] = $match[3];
|
||||||
$post['name'] = !empty($match[2])?$match[2]:'Anonymous';
|
$post['name'] = !empty($match[2])?$match[2]:$config['anonymous'];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$post['mod_tag'] = false;
|
$post['mod_tag'] = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user