Fix non existing parameter passed to function

SVN:trunk[5969]
This commit is contained in:
Pierre Goiffon
2018-07-24 15:36:26 +00:00
parent 526d4c4d15
commit 9612b1b9e9

View File

@@ -455,7 +455,7 @@ class CMDBSource
public static function DropTable($sTable)
{
$res = self::Query("DROP TABLE `$sTable`");
self::_TablesInfoCacheReset(true); // reset the table info cache!
self::_TablesInfoCacheReset(); // reset the table info cache!
return $res;
}