1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 18:14:26 +02:00

Issue #4501 Reinitialize db_verify after plugin installation.

This commit is contained in:
camer0n
2023-12-07 14:11:23 -08:00
parent fc59e8211f
commit b970aec7aa
3 changed files with 41 additions and 25 deletions

View File

@@ -1113,6 +1113,7 @@ EOF;
}
// Fix table.
$this->dbv->init(true);
$this->dbv->compare('rss');
$this->dbv->compileResults();
$this->dbv->runFix();

View File

@@ -336,7 +336,12 @@
public function testRss_menu()
{
$this->pluginInstall('rss_menu');
$installed = e107::isInstalled('rss_menu');
self::assertTrue($installed);
$this->pluginUninstall('rss_menu');
$installed = e107::isInstalled('rss_menu');
self::assertFalse($installed);
}
public function testSocial()