1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

we included a check for getimagesize() existance... now we again can suppress notices while running this function.

git-svn-id: file:///svn/phpbb/trunk@7646 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-05-19 16:40:56 +00:00
parent 47d3e4d9b8
commit 4c44eddc90
10 changed files with 22 additions and 9 deletions

View File

@@ -459,6 +459,18 @@ function compose_pm($id, $mode, $action)
confirm_box(false, 'SAVE_DRAFT', $s_hidden_fields);
}
}
else
{
if (!$subject)
{
$error[] = $user->lang['EMPTY_MESSAGE_SUBJECT'];
}
if (!$message)
{
$error[] = $user->lang['TOO_FEW_CHARS'];
}
}
unset($subject, $message);
}