From d1db2cceda5daba8805ae42c6bdee03b6f30c5c1 Mon Sep 17 00:00:00 2001 From: james Date: Wed, 18 Oct 2006 17:25:41 +0000 Subject: [PATCH] Fix daves typo's :) --- tableeditor.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tableeditor.class.php b/tableeditor.class.php index 149cecf8..5a314726 100644 --- a/tableeditor.class.php +++ b/tableeditor.class.php @@ -427,7 +427,7 @@ class TableEditor function defaultSave($insert_mode, $keyval, $editdata) { $query = ""; - if($insert_mmode) { + if($insert_mode) { $query="INSERT INTO `{$this->table}` ("; //create list of fields to insert foreach($editdata AS $f=>$n) @@ -449,7 +449,7 @@ class TableEditor //rip off the last comma $query=substr($query,0,-1); - if($insertmode) { + if($insert_mode) { $query.=")"; } else { $query.=" WHERE {$this->primaryKey}='{$keyval}'"; @@ -618,7 +618,7 @@ class TableEditor } - if($insertmode) { + if($inser_tmode) { $text_error = "adding new"; $text_happy = "added new"; } else {