1
0
mirror of https://github.com/e107inc/e107.git synced 2025-05-07 20:55:34 +02:00

Removed leftover mysql debug info.

This commit is contained in:
Cameron 2014-12-10 22:33:02 -08:00
parent dfa8ed4a8a
commit 63b8e8965d

@ -1628,7 +1628,7 @@ class e_db_mysql
if ($prefix == '') $prefix = $this->mySQLPrefix;
if (FALSE === ($result = $this->gen('SHOW COLUMNS FROM '.$prefix.$table,$this->mySQLaccess)))
if (FALSE === ($result = $this->gen('SHOW COLUMNS FROM '.$prefix.$table)))
{
return FALSE; // Error return
}
@ -1698,7 +1698,7 @@ class e_db_mysql
$this->mySQLaccess = $db_ConnectionID;
}
$result = $this->gen("SHOW COLUMNS FROM ".$this->mySQLPrefix.$table,$this->mySQLaccess);
$result = $this->gen("SHOW COLUMNS FROM ".$this->mySQLPrefix.$table);
if ($result && ($this->rowCount() > 0))
{
$c=0;