Welcome Guest, Not a member yet? Register   Sign In
DB.php bug
#1

[eluser]Unknown[/eluser]
I believe that line 69 in DB.php is incorrect. This has to do with the parsing of DSN

It is now:

'database' => (isset($dns['path'])) ? rawurldecode(substr($dns['host'], 1)) : ''

and should be:

'database' => (isset($dns['path'])) ? rawurldecode(substr($dns['path'], 1)) : ''

That gets the databse name in there. Thanks.




Theme © iAndrew 2016 - Forum software by © MyBB