fix error introduced in a previous commit
authorGalen Charlton <galen.charlton@liblime.com>
Wed, 11 Mar 2009 15:28:44 +0000 (10:28 -0500)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Tue, 26 May 2009 19:15:02 +0000 (21:15 +0200)
commita80733d4f2fd516c008b90e435e77e05d1e77870
tree94aa6654c185372189623508ba4d070a06ff5feb
parent5473a35070297fa8b36aab51c38d28bc76862de7
fix error introduced in a previous commit

Change to GetReservesFromBiblionumber() had effect
of causing all requests of constrainttype other
than 'o' to not be included in result.

while ($foo) {
    $bar or next;
    # do stuff
    # do other stuff
}

is not equivalent to

while ($foo) {
    if ($bar) {
        # do stuff
    }
    # do other stuff

}

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com>
C4/Reserves.pm