http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6710 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Templates |Virtual Shelves AssignedTo|oleonard@myacpl.org |gmcharlt@gmail.com QAContact|koha-bugs@lists.koha-commun |ian.walls@bywatersolutions. |ity.org |com --- Comment #1 from Owen Leonard <oleonard@myacpl.org> 2011-11-11 17:15:47 UTC --- The lists that display in those instances are generated by the GetRecentShelves subroutine which retrieves (usually 10) shelve ordered by the date last modified: my $query = 'SELECT * FROM virtualshelves'; $query .= $selection; $query .= ' ORDER BY lastmodified DESC'; if ($row_count){ $query .= ' LIMIT ?'; So the top of the list should be the most recently changed. Perhaps it would be better to grab the last 10 most recently changed and reorder the resulting set by title? -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are watching all bug changes.