fixed $table when throwing exception

This commit is contained in:
Petr Skoda 2010-09-17 20:19:05 +00:00
parent 4fdfe0d404
commit dd63e0ff65

View File

@ -116,7 +116,7 @@ class database_manager {
/// Check the table exists
if (!$this->table_exists($table)) {
throw new ddl_table_missing_exception($tablename);
throw new ddl_table_missing_exception($table);
}
if (!$sqlarr = $this->generator->getResetSequenceSQL($table)) {