From 6b78ffdf63fe7c61948da781ed698bf9060682b8 Mon Sep 17 00:00:00 2001 From: erickson Date: Tue, 22 Apr 2008 00:58:31 +0000 Subject: [PATCH] returning the fund as an href which links to view fund page git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@9420 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../templates/oils/default/acq/financial/view_funding_source.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html index 5814a941a4..9a18d1877c 100644 --- a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html @@ -76,7 +76,8 @@ req.send(); fundCache[fundId] = req.recv().content(); } - return fundCache[fundId].name() + var name = fundCache[fundId].name(); + return ''+name+''; } /** builds the credits grid ----- */ @@ -98,7 +99,7 @@ fsCreditGrid.isLoaded = true; } - /** builds the credits grid ----- */ + /** builds the allocations grid ----- */ function loadAllocationGrid() { if(fsAllocationGrid.isLoaded) return; var store = new dojo.data.ItemFileReadStore({data:acqfa.toStoreData(fundingSource.allocations())}); -- 2.11.0