Index: openacs-4/packages/acs-admin/www/users/registration-history.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/users/registration-history.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-admin/www/users/registration-history.tcl 27 Oct 2014 16:38:58 -0000 1.3 +++ openacs-4/packages/acs-admin/www/users/registration-history.tcl 7 Aug 2017 23:47:45 -0000 1.4 @@ -14,16 +14,12 @@ # we have to query for pretty month and year separately because Oracle pads # month with spaces that we need to trim -db_multirow user_rows user_rows { - select to_char(creation_date,'YYYYMM') as sort_key, - rtrim(to_char(creation_date,'Month')) as pretty_month, - to_char(creation_date,'YYYY') as pretty_year, - count(*) as n_new - from users, acs_objects - where users.user_id = acs_objects.object_id - and creation_date is not null - group by to_char(creation_date,'YYYYMM'), to_char(creation_date,'Month'), to_char(creation_date,'YYYY') - order by 1 -} +db_multirow user_rows user_rows {} ad_return_template + +# Local variables: +# mode: tcl +# tcl-indent-level: 4 +# indent-tabs-mode: nil +# End: