fix error introduced in a previous commit
authorGalen Charlton <galen.charlton@liblime.com>
Wed, 11 Mar 2009 15:28:44 +0000 (10:28 -0500)
committerGalen Charlton <galen.charlton@liblime.com>
Wed, 11 Mar 2009 15:39:33 +0000 (10:39 -0500)
commit3c04a7915a6f9bdf83af3032a325b939d21c3f63
treedffa7b88d50e9b92519df105b24e724eae378df1
parent0d590c1e30b1f6b3534838a4de8b66139d809605
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>
C4/Reserves.pm