From c8f10f4b6d18320e50081a93f29df06f1b63543b Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 21 Mar 2006 15:19:11 +0000 Subject: [PATCH] Missed some --- chrome/chromeFiles/content/scholar/data_access.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/chrome/chromeFiles/content/scholar/data_access.js b/chrome/chromeFiles/content/scholar/data_access.js index 7235ea5158..8be394b11f 100644 --- a/chrome/chromeFiles/content/scholar/data_access.js +++ b/chrome/chromeFiles/content/scholar/data_access.js @@ -402,7 +402,7 @@ Scholar.Object.prototype.save = function(){ } // See if this is an existing creator - var creatorID = Scholar_Creators.getID( + var creatorID = Scholar.Creators.getID( creator['firstName'], creator['lastName'], creator['creatorTypeID'] @@ -410,7 +410,7 @@ Scholar.Object.prototype.save = function(){ // If not, add it if (!creatorID){ - creatorID = Scholar_Creators.add( + creatorID = Scholar.Creators.add( creator['firstName'], creator['lastName'], creator['creatorTypeID'] @@ -435,7 +435,7 @@ Scholar.Object.prototype.save = function(){ } // Append the SQL to delete obsolete creators - sql += Scholar_Creators.purge(true) + "\n"; + sql += Scholar.Creators.purge(true) + "\n"; } @@ -564,7 +564,7 @@ Scholar.Object.prototype.save = function(){ } // See if this is an existing creator - var creatorID = Scholar_Creators.getID( + var creatorID = Scholar.Creators.getID( creator['firstName'], creator['lastName'], creator['creatorTypeID'] @@ -572,7 +572,7 @@ Scholar.Object.prototype.save = function(){ // If not, add it if (!creatorID){ - creatorID = Scholar_Creators.add( + creatorID = Scholar.Creators.add( creator['firstName'], creator['lastName'], creator['creatorTypeID']