diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-01-29 16:43:21 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-01-29 16:43:21 +0000 |
commit | 702dc420ed1ec1a18e42d1aafed6e2c3a8c4b8c7 (patch) | |
tree | c84b020f404f4a294371f96c38677de5354c2fa1 /perllib/FixMyStreet/DB/Result/Problem.pm | |
parent | 49a658f00adf95ec48b433eac1734ba9bc0f658a (diff) |
No names on EmptyHomes site, no map pin text.
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/Problem.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Problem.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Problem.pm b/perllib/FixMyStreet/DB/Result/Problem.pm index 26724303e..0238e3b09 100644 --- a/perllib/FixMyStreet/DB/Result/Problem.pm +++ b/perllib/FixMyStreet/DB/Result/Problem.pm @@ -566,11 +566,7 @@ sub meta_line { my $category = _($problem->category); utf8::decode($category); - if ($problem->anonymous) { - $meta = sprintf(_('%s, reported anonymously at %s'), $category, $date_time); - } else { - $meta = sprintf(_('%s, reported by %s at %s'), $category, $problem->name, $date_time); - } + $meta = sprintf(_('%s, reported at %s'), $category, $date_time); } else { |