mirror of
https://github.com/e107inc/e107.git
synced 2025-07-28 10:20:45 +02:00
Implemented missing e_db_mysql::resetTableList() method
e_db::resetTableList() is now an interface method (undocumented)
This commit is contained in:
@@ -352,6 +352,11 @@
|
||||
function backup($table='*', $file='', $options=null);
|
||||
|
||||
|
||||
/**
|
||||
* TODO: Document this method
|
||||
*/
|
||||
public function resetTableList();
|
||||
|
||||
/**
|
||||
* Return a filtered list of DB tables.
|
||||
*
|
||||
|
@@ -2607,6 +2607,13 @@ class e_db_mysql implements e_db
|
||||
$this->mySQLtableList = array();
|
||||
$this->mySQLtableListLanguage = array();
|
||||
}
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function resetTableList()
|
||||
{
|
||||
return $this->db_ResetTableList();
|
||||
}
|
||||
|
||||
/**
|
||||
* Legacy Alias of tables
|
||||
|
Reference in New Issue
Block a user