From: erickson Date: Fri, 26 Jan 2007 19:42:37 +0000 (+0000) Subject: fixed logic bug in detecting the exisence of stream mode X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ae719e41f7c61bc431d409ed589b36b6a325184d;p=Evergreen.git 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 --- 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;