diff options
author | matthew <matthew> | 2007-08-27 11:47:55 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-08-27 11:47:55 +0000 |
commit | d5096b4f393d2f8a18515b7808bd064dc71567ac (patch) | |
tree | d8be55dfb03e934395ecf2fcd77e34e594bc53e2 /perllib/Page.pm | |
parent | cf686992077d4e8ca977a6b3e7211fcb02874999 (diff) |
Sort case upon database insertion.
Diffstat (limited to 'perllib/Page.pm')
-rw-r--r-- | perllib/Page.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 078cd9574..5fd8a665d 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Page.pm,v 1.61 2007-08-27 11:40:38 matthew Exp $ +# $Id: Page.pm,v 1.62 2007-08-27 11:47:55 matthew Exp $ # package Page; @@ -377,7 +377,7 @@ sub _ { sub display_problem_text { my ($q, $problem) = @_; - my $out = $q->h1(ent(ucfirst $problem->{title})); + my $out = $q->h1(ent($problem->{title})); # Display information about problem $out .= '<p><em>Reported '; |