Fixed small issue with UTF-8 characters decreasing the maximum length of inputs.

This commit is contained in:
Savetheinternet 2010-11-03 23:02:15 +11:00
parent 16b6548b4a
commit f864d5df16
2 changed files with 6 additions and 6 deletions

View file

@ -67,7 +67,7 @@
}
$post['name'] = (!empty($_POST['name'])?$_POST['name']:'Anonymous');
$post['subject'] = utf8tohtml($_POST['subject']);
$post['subject'] = $_POST['subject'];
$post['email'] = utf8tohtml($_POST['email']);
$post['body'] = $_POST['body'];
$post['password'] = $_POST['password'];
@ -78,7 +78,7 @@
error(ERR_FILSIZE);
$trip = generate_tripcode($post['name']);
$post['name'] = utf8tohtml($trip[0]);
$post['name'] = $trip[0];
$post['trip'] = (isset($trip[1])?$trip[1]:'');
if($post['email'] == 'noko') {