From: dbs Date: Wed, 8 Jul 2009 17:51:47 +0000 (+0000) Subject: Merge r13509 from trunk: Order copy locations by name by default; useful for shelving... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3bbae8073f4bebcf898cf35b3854ac8d42cbce9f;p=Evergreen.git Merge r13509 from trunk: Order copy locations by name by default; useful for shelving location filter in advanced search git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_0@13537 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm index a9d601bc21..9439aec16b 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm @@ -449,6 +449,7 @@ sub ranged_asset_copy_location { FROM $ctable c JOIN $descendants d ON (d.id = c.owning_lib) + ORDER BY name SQL my $sth = asset::copy_location->db_Main->prepare($sql);