Skip to content

Commit 5dd950c

Browse files
committed
fix: remove unneeded escape
1 parent 24ee92c commit 5dd950c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Diff for: system/Database/Forge.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,7 @@ private function databaseExists(string $dbName): bool
275275
return false;
276276
}
277277

278-
return $this->db->query(
279-
$this->checkDatabaseExistStr,
280-
$this->db->escapeIdentifier($dbName)
281-
)->getRow() !== null;
278+
return $this->db->query($this->checkDatabaseExistStr, $dbName)->getRow() !== null;
282279
}
283280

284281
/**

0 commit comments

Comments
 (0)