From: erickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Fri, 13 Nov 2009 20:38:13 +0000 (+0000)
Subject: string-ify lib var so we get the ID instead of the ref value
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6d4416f2e45dbc83824b5ff429daa689ef1b3a55;p=contrib%2FConifer.git

string-ify lib var so we get the ID instead of the ref value

git-svn-id: svn://svn.open-ils.org/ILS/trunk@14913 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
index 448b3357ea..f58ff7b079 100644
--- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
+++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
@@ -1552,7 +1552,7 @@ sub create_prox_list {
 
 		# Fetch the weighting value for hold targeting, defaulting to 1
 		$self->{target_weight}{$lib} ||= $actor->request(
-			'open-ils.actor.ou_setting.ancestor_default' => $lib => 'circ.holds.org_unit_target_weight'
+			'open-ils.actor.ou_setting.ancestor_default' => $lib.'' => 'circ.holds.org_unit_target_weight'
 		)->gather(1) || 1;
 
 		$prox_list[$prox] = [] unless defined($prox_list[$prox]);