diff options
Diffstat (limited to '')
-rw-r--r-- | picture.php | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/picture.php b/picture.php index fb7b19307..bcc1a2939 100644 --- a/picture.php +++ b/picture.php @@ -189,8 +189,6 @@ function default_picture_content($content, $element_info) // | initialization | // +-----------------------------------------------------------------------+ -$infos = array(); - // caching first_rank, last_rank, current_rank in the displayed // section. This should also help in readability. $page['first_rank'] = 0; @@ -338,22 +336,17 @@ UPDATE '.USER_CACHE_CATEGORIES_TABLE.' switch ($comment_action) { case 'moderate': - array_push($infos, l10n('An administrator must authorize your comment before it is visible.')); + array_push($page['infos'], l10n('An administrator must authorize your comment before it is visible.')); case 'validate': - array_push($infos, l10n('Your comment has been registered')); + array_push($page['infos'], l10n('Your comment has been registered')); break; case 'reject': set_status_header(403); - array_push($infos, l10n('Your comment has NOT been registered because it did not pass the validation rules')); + array_push($page['errors'], l10n('Your comment has NOT been registered because it did not pass the validation rules')); break; default: trigger_error('Invalid comment action '.$comment_action, E_USER_WARNING); } - - $template->assign( - ($comment_action=='reject') ? 'errors' : 'infos', - $infos - ); unset($_POST['content']); break; |