commit c8f10f4b6d18320e50081a93f29df06f1b63543b
parent 7448c8ce5d86d2411828c59b8264d9d25585ff1d
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 21 Mar 2006 15:19:11 +0000
Missed some
Diffstat:
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
@@ -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']