From ae719e41f7c61bc431d409ed589b36b6a325184d Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 26 Jan 2007 19:42:37 +0000 Subject: [PATCH] fixed logic bug in detecting the exisence of stream mode git-svn-id: svn://svn.open-ils.org/ILS/trunk@6820 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm b/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm index 35a360cd36..71a9117b7c 100644 --- a/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm @@ -493,7 +493,7 @@ sub runmethod { $method =~ s/search/id_list/o if $options->{idlist}; - $method =~ s/\.atomic$//o if $self->substream($$options{substream}); + $method =~ s/\.atomic$//o if $self->substream($$options{substream} || 0); # remove any stale events $self->clear_event; -- 2.11.0