-
Bug
-
Resolution: Fixed
-
3.0.1
-
None
-
PHP Environment:
Database:
Around line 450 ther is:
$errormsgs = '<br />';
|
foreach ($errors as $img => $error)
|
{
|
$errormsgs .= '<br />' . sprintf($user->lang[$error], $img);
|
}
|
if ($action == 'modify')
|
{
|
trigger_error($user->lang[$suc_lang . '_EDITED'] . $errormsgs . adm_back_link($this->u_action), $level);
|
}
|
else
|
{
|
trigger_error($user->lang[$suc_lang . '_ADDED'] . $errormsgs .adm_back_link($this->u_action), $level);
|
}
|
Since adm_back_link already adds two <br />'s it adds a too big space if there are no errors.
Also, there is a missing space before the second adm_back_link().