[open-ils-commits] r9438 -
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Apr 22 23:31:13 EDT 2008
Author: erickson
Date: 2008-04-22 22:52:02 -0400 (Tue, 22 Apr 2008)
New Revision: 9438
Modified:
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funding_sources.html
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_providers.html
Log:
using OO-ized User objects
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funding_sources.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funding_sources.html 2008-04-23 02:50:31 UTC (rev 9437)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funding_sources.html 2008-04-23 02:52:02 UTC (rev 9438)
@@ -85,7 +85,7 @@
<script>
function loadFSGrid() {
- openils.User.getBySession();
+ new openils.User().getBySession();
/** define how the primary grid is rendered */
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html 2008-04-23 02:50:31 UTC (rev 9437)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html 2008-04-23 02:52:02 UTC (rev 9438)
@@ -89,7 +89,7 @@
<script>
function loadFundGrid() {
- openils.User.getBySession();
+ new openils.User().getBySession();
/** define how the primary grid is rendered */
Modified: branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_providers.html
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_providers.html 2008-04-23 02:50:31 UTC (rev 9437)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_providers.html 2008-04-23 02:52:02 UTC (rev 9438)
@@ -21,7 +21,7 @@
<script>
function loadProviderGrid() {
- openils.User.getBySession();
+ new openils.User().getBySession();
/** define how the primary grid is rendered */
More information about the open-ils-commits
mailing list