From 06b49ba286dbccb924797f7cdd9d32930f9bdc02 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 12 Mar 2020 18:03:50 +0100 Subject: [PATCH] remove db prefix --- Admin/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Admin/Installer.php b/Admin/Installer.php index eb824d2..787c545 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -48,7 +48,7 @@ final class Installer extends InstallerAbstract public static function installExternal(DatabasePool $dbPool, array $data) : void { try { - $dbPool->get()->con->query('select 1 from `' . $dbPool->get()->prefix . 'media`'); + $dbPool->get()->con->query('select 1 from `media`'); } catch (\Exception $e) { return; }