From 150c36eab350782260e33918d8f3e49f75fcb96d Mon Sep 17 00:00:00 2001
From: Ralf Becker
Date: Mon, 21 Jun 2004 10:25:14 +0000
Subject: [PATCH] fixed typo (old varname) which caused problems in SiteMgr
while editing categories
---
phpgwapi/inc/class.db.inc.php | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/phpgwapi/inc/class.db.inc.php b/phpgwapi/inc/class.db.inc.php
index c55f7b3338..69c0f25b57 100644
--- a/phpgwapi/inc/class.db.inc.php
+++ b/phpgwapi/inc/class.db.inc.php
@@ -1106,19 +1106,18 @@
*/
function insert($table,$data,$where,$line,$file,$app=False)
{
+ if ($this->Debug) echo "db::insert('$table',".print_r($data,True).",".print_r($where,True).",$line,$file,'$app')
\n";
+
$table_def = $this->get_table_definitions($app,$table);
if (is_array($where) && count($where))
{
- $sql = "SELECT count(*) FROM $table WHERE ".
- $this->column_data_implode(' AND ',$where,True,False,$table_def['fd']);
-
- $this->query($sql,$line,$file);
+ $this->select($table,'count(*)',$where,$line,$file);
if ($this->next_record() && $this->f(0))
{
return $this->update($table,$data,$where,$line,$file,$app);
}
- $data = array_merge($check,$data); // the checked values need to be inserted too, value in data has precedence
+ $data = array_merge($where,$data); // the checked values need to be inserted too, value in data has precedence
}
$sql = "INSERT INTO $table ".$this->column_data_implode(',',$data,'VALUES',False,$table_def['fd']);
@@ -1212,7 +1211,7 @@
break;
}
}
- //echo "db::expression($table,
".print_r(func_get_args(),True)."
) ='$sql'
\n";
+ if ($this->Debug) echo "db::expression($table,
".print_r(func_get_args(),True)."
) ='$sql'\n";
return $sql;
}
@@ -1232,6 +1231,8 @@
*/
function select($table,$cols,$where,$line,$file,$offset=False,$app=False)
{
+ if ($this->Debug) echo "db::select('$table',".print_r($cols,True).",".print_r($where,True).",$line,$file,$offset,'$app')
\n";
+
$table_def = $this->get_table_definitions($app,$table);
if (is_array($cols))
{
@@ -1243,6 +1244,8 @@
}
$sql = "SELECT $cols FROM $table WHERE ".($where ? $where : '1=1');
+ if ($this->Debug) echo "sql='$sql'
";
+
return $this->query($sql,$line,$file,$offset,$offset===False ? -1 : 0);
}
}