1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Notice removal

This commit is contained in:
CaMer0n
2009-09-03 23:39:32 +00:00
parent 5682d51849
commit 579674c87e

View File

@@ -9,8 +9,8 @@
* mySQL Handler * mySQL Handler
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/mysql_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/mysql_class.php,v $
* $Revision: 1.42 $ * $Revision: 1.43 $
* $Date: 2009-09-01 20:09:35 $ * $Date: 2009-09-03 23:39:32 $
* $Author: e107coders $ * $Author: e107coders $
*/ */
@@ -61,7 +61,7 @@ $db_ConnectionID = NULL; // Stores ID for the first DB connection used - which s
* MySQL Abstraction class * MySQL Abstraction class
* *
* @package e107 * @package e107
* @version $Revision: 1.42 $ * @version $Revision: 1.43 $
* @author $Author: e107coders $ * @author $Author: e107coders $
*/ */
class db { class db {
@@ -1086,7 +1086,7 @@ class db {
$this->mySQLdefaultdb = $mySQLdefaultdb; $this->mySQLdefaultdb = $mySQLdefaultdb;
} }
$convert = array("PRIMARY"=>"PRI","INDEX"=>"MUL","UNIQUE"=>"UNI"); $convert = array("PRIMARY"=>"PRI","INDEX"=>"MUL","UNIQUE"=>"UNI");
$key = ($convert[$key]) ? $convert[$key] : "OFF"; $key = (isset($convert[$key])) ? $convert[$key] : "OFF";
if(!$this->mySQLaccess) if(!$this->mySQLaccess)
{ {