--- trunk/lib/SVNBrowser/Action/Filter.pm 2006/12/10 00:01:33 26 +++ trunk/lib/SVNBrowser/Action/Filter.pm 2006/12/10 11:13:00 27 @@ -24,6 +24,8 @@ function => 'distinct', ); $authors->unlimit; + $authors->order_by({ column => 'author', order => 'ASC' }); + warn "authors ", $authors->build_select_query; [{ display_from => 'author', value_from => 'author', @@ -41,6 +43,8 @@ function => 'distinct', ); $branches->unlimit; + $branches->order_by({ column => 'path', order => 'ASC' }); + warn "branches ", $branches->build_select_query; [{ display_from => 'path', value_from => 'path',