Commit 567235fd authored by David Zuelke's avatar David Zuelke

fix wrong variable use in parse_url

parent 005d30ef
...@@ -232,7 +232,7 @@ final class DriverManager ...@@ -232,7 +232,7 @@ final class DriverManager
// (pdo_)?sqlite3?:///... => (pdo_)?sqlite3?://localhost/... or else the URL will be invalid // (pdo_)?sqlite3?:///... => (pdo_)?sqlite3?://localhost/... or else the URL will be invalid
$url = preg_replace('#^((?:pdo_)?sqlite3?):///#', '$1://localhost/', $url); $url = preg_replace('#^((?:pdo_)?sqlite3?):///#', '$1://localhost/', $url);
$url = parse_url($params['url']); $url = parse_url($url);
if ($url === false) { if ($url === false) {
throw new DBALException('Malformed parameter "url".'); throw new DBALException('Malformed parameter "url".');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment