Remove unnecessary space

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
This commit is contained in:
Kamil Tekiela 2024-01-13 02:32:11 +01:00
parent 76110f2ed7
commit a4e4c4b630

View File

@ -122,7 +122,7 @@ class RecentFavoriteTables
private function getFromDb(): array
{
// Read from phpMyAdmin database, if recent tables is not in session
$sqlQuery = ' SELECT `tables` FROM ' . $this->getPmaTable()
$sqlQuery = 'SELECT `tables` FROM ' . $this->getPmaTable()
. ' WHERE `username` = '
. $this->dbi->quoteString(Config::getInstance()->selectedServer['user'], Connection::TYPE_CONTROL);