From: miker Date: Mon, 31 Jul 2006 22:51:33 +0000 (+0000) Subject: bug fix X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=528fd6bf63ba0cbd19806e140eedaf1edc19c964;p=evergreen%2Fpines.git bug fix git-svn-id: svn://svn.open-ils.org/ILS/trunk@5206 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/actor.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/actor.pm index 6f6cb52942..8c4cb0e150 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/actor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/actor.pm @@ -303,9 +303,9 @@ sub patron_search { my $order_by = join ', ', map { 'users.'. $_} @$sort; if ($inactive) { - $inactive = 'AND users.active = FALSE'; - } else { $inactive = ''; + } else { + $inactive = 'AND users.active = FALSE'; } $select = <<" SQL";