From: miker Date: Wed, 16 Jun 2010 19:25:15 +0000 (+0000) Subject: typo in json_query for authority browse X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b59c9bc869bae9746eff7eee92d9830776bc1bb1;p=evergreen%2Fbjwebb.git typo in json_query for authority browse git-svn-id: svn://svn.open-ils.org/ILS/trunk@16734 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm index 34857768b..f250198dc 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm @@ -819,7 +819,7 @@ sub authority_tag_sf_browse { { select => { afr => [qw/record value/] }, from => 'afr', where => { tag => $tag, subfield => $subfield, value => { '>=' => lc($value) } }, - order_by => { mfr => { value => 'asc' } }, + order_by => { afr => { value => 'asc' } }, limit => $after_limit, offset => abs($page) * $page_size - $after_offset, }