diff options
author | matthew <matthew> | 2009-08-20 17:14:24 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-08-20 17:14:24 +0000 |
commit | 19f75b08228ef8d14dc9616dabfc17f9e9081b59 (patch) | |
tree | af43864d000777dd126d98b07dd30dad1bf9fd8f /web-admin | |
parent | d47a7666c598466a1eb72670473940e9218af20f (diff) |
Do lat/lon elsewhere in case of error on submission; sort in admin interface.
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 f2ee1c98d..d06700662 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.71 2009-08-17 14:48:45 matthew Exp $ +# $Id: index.cgi,v 1.72 2009-08-20 17:14:24 matthew Exp $ # -my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.71 2009-08-17 14:48:45 matthew Exp $'; +my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.72 2009-08-20 17:14:24 matthew Exp $'; use strict; @@ -554,7 +554,7 @@ EOF print $q->end_form; print $q->h2('Updates'); - my $updates = select_all('select * from comment where problem_id=?', $id); + my $updates = select_all('select * from comment where problem_id=? order by created', $id); admin_show_updates($q, $updates); print html_tail($q); } |