diff options
-rwxr-xr-x | web/contact.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/contact.cgi b/web/contact.cgi index 6b82422a1..0b1a27c9f 100755 --- a/web/contact.cgi +++ b/web/contact.cgi @@ -192,7 +192,7 @@ sub contact_page { } else { $intro .= $q->p(_('You are reporting the following update for being abusive, containing personal information, or similar:')); $item_title = ent($u->{title}); - $item_meta = $q->em( 'Update below added ', ($u->{name} eq '') ? 'anonymously' : "by " . ent($u->{name}), + $item_meta = $q->em( 'Update below added ', (!$u->{name}) ? 'anonymously' : "by " . ent($u->{name}), ' at ' . Page::prettify_epoch($q, $u->{confirmed})); $item_body = ent($u->{text}); $hidden_vals .= '<input type="hidden" name="update_id" value="' . $update_id . '">'; |