-
Bug
-
Resolution: Fixed
-
3.0.0
-
None
-
PHP Environment:
Database:
If i want to create a new topic and enter "0" (without the quotes) as a topic title, this will not work, because of the following:
if (!$subject || !utf_clean_string($subject))
|
{
|
$error[] = $user->lang['EMPTY_SUBJECT'];
|
}
|
Perhaps $subject === '' should be used here?

