diff --git a/openbiz/bin/BizSystem.php b/openbiz/bin/BizSystem.php index 5ae9611..ff5236f 100644 --- a/openbiz/bin/BizSystem.php +++ b/openbiz/bin/BizSystem.php @@ -443,7 +443,7 @@ public static function getDBTableQuoted($identifier, $dbName=null) $dbInfo = BizSystem::instance()->getConfiguration()->getDatabaseInfo($rDBName); if(strtoupper($dbInfo["Driver"])=="PDO_MYSQL") { $value = trim(trim($identifier), "`"); - return "`".$value."`"; + return $value; } return $identifier; }