diff options
author | louise <louise> | 2010-01-06 13:17:06 +0000 |
---|---|---|
committer | louise <louise> | 2010-01-06 13:17:06 +0000 |
commit | 940546d77eca1ad1bea6bea47eaef644b2e3673b (patch) | |
tree | 2a84dba6f6320cd24f8ce7fa4d7cbb46d2b3da74 /web-admin | |
parent | f6fc89e70b1565d40f375fdf3b779dffefd9622d (diff) |
Set default before entity encoding
Diffstat (limited to 'web-admin')
-rwxr-xr-x | web-admin/index.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web-admin/index.cgi b/web-admin/index.cgi index f187fe871..2345fb902 100755 --- a/web-admin/index.cgi +++ b/web-admin/index.cgi @@ -7,10 +7,10 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: index.cgi,v 1.84 2010-01-06 12:33:26 louise Exp $ +# $Id: index.cgi,v 1.85 2010-01-06 13:17:06 louise Exp $ # -my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.84 2010-01-06 12:33:26 louise Exp $'; +my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.85 2010-01-06 13:17:06 louise Exp $'; use strict; @@ -795,7 +795,7 @@ sub admin_timeline { } elsif ($type eq 'update') { $cobrand_data = get_cobrand_data_from_hash($cobrand, $_); my $url = Cobrand::base_url_for_emails($cobrand, $cobrand_data) . "/report/$_->{problem_id}#$_->{id}"; - my $name = ent($_->{name}) || 'anonymous'; + my $name = ent($_->{name} || 'anonymous'); print "Update <a href='$url'>$_->{id}</a> created for problem $_->{problem_id}; by $name <" . ent($_->{email}) . ">"; } elsif ($type eq 'alertSub') { my $param = $_->{parameter} || ''; |