diff options
author | matthew <matthew> | 2007-04-19 11:44:17 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-04-19 11:44:17 +0000 |
commit | 5a758c13f4316b27ce9ce759e09814f4d791ef71 (patch) | |
tree | 3f957a7840a1bbe20e1eae84dc310d854540bb91 /web/index.cgi | |
parent | 4289226689617de7dfd1d982d0ec645f1fd9a8e2 (diff) |
Swap order of updates; start of report.
Diffstat (limited to 'web/index.cgi')
-rwxr-xr-x | web/index.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/index.cgi b/web/index.cgi index 13a63925b..bf8664b37 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: index.cgi,v 1.110 2007-04-18 09:26:08 matthew Exp $ +# $Id: index.cgi,v 1.111 2007-04-19 11:44:17 matthew Exp $ # TODO # Nothing is done about the update checkboxes - not stored anywhere on anything! @@ -609,7 +609,7 @@ EOF my $updates = select_all( "select id, name, extract(epoch from created) as created, text, mark_fixed, mark_open from comment where problem_id = ? and state='confirmed' - order by created desc", $input{id}); + order by created", $input{id}); if (@$updates) { $out .= '<div id="updates">'; $out .= '<h2>Updates</h2>'; |