1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Fixes Plugin Database structure update detection.

This commit is contained in:
Cameron
2017-04-21 14:21:29 -07:00
parent 40558eeedb
commit caee889b7f
4 changed files with 18 additions and 10 deletions

View File

@@ -55,7 +55,6 @@ class db_verify
function __construct()
{
$sql = e107::getDb();
$sql->gen('SET SQL_QUOTE_SHOW_CREATE = 1');
@@ -74,8 +73,6 @@ class db_verify
}
$this->sqlLanguageTables = $this->getSqlLanguages();
// $this->loadCreateTableData();
@@ -84,6 +81,13 @@ class db_verify
}
public function clearCache()
{
return e107::getCache()->clear(self::cachetag, true);
}
private function load()
{
$mes = e107::getMessage();
@@ -232,6 +236,7 @@ class db_verify
}
}
}
}