Do an equality test, instead of assigning a value
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 17 Dec 2010 15:17:43 +0000 (15:17 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 17 Dec 2010 15:17:43 +0000 (15:17 +0000)
Thanks to Bill Erickson for catching this; this fixes a bug where
SuperCat requests would end up returning authority records instead of
bibliographic records.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19009 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm

index 3173a34..bf54240 100644 (file)
@@ -998,7 +998,7 @@ sub changes_feed {
        #}
 
        my $search = 'record';
-       if ($rtype = 'authority') {
+       if ($rtype eq 'authority') {
                $search = 'authority';
        }
        my $feed = create_record_feed( $search, $type, $list, $unapi, $org_unit->[0]->shortname, undef, $flesh_feed);