fix typo causing PHP Fatal error on update

This commit is contained in:
Ralf Becker 2015-08-04 09:53:38 +00:00
parent 0bde40fac5
commit 8fabe11fc5

View File

@ -723,7 +723,7 @@ class schema_proc
else else
{ {
// drop evtl. existing temp. table eg. from a previous failed upgrade // drop evtl. existing temp. table eg. from a previous failed upgrade
if (($tables = $this->db->table_names(true)) && in_array($tmp_name, $tables)) if (($tables = $this->m_odb->table_names(true)) && in_array($tmp_name, $tables))
{ {
$this->DropTable($tmp_name); $this->DropTable($tmp_name);
} }