Replies: 3 comments
-
@driesvints Hi, You transfered the issue as a question ; but I'm reporting a bug, not a question... |
Beta Was this translation helpful? Give feedback.
0 replies
-
Theses 2 tests failed Edit: diff moved in branch https://github.com/Gounlaf/laravel-framework/commit/32bbc2acbbcb74ac1d176596a6daa2c56ad937b1 |
Beta Was this translation helpful? Give feedback.
0 replies
-
@Gounlaf feel free to PR a fix with a failing test if you believe something is broken. Thanks |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
pdo_mysql
Description:
I want to configure the timezone of a database connection. It doesn't when using a DSN.
Steps To Reproduce:
mysql://user:pwd@host:port/database_name?timezone=%2B00%3A00
ormysql://user:pwd@host:port/database_name?timezone=+00:00
00:00
instead of+00:00
Encoded (
%2B00%3A00
) or "raw" version (+00:00
) doesn't workThings happens in ConfigurationUrlParser class, when options (queryString) are parsed.
Double encoding the value
%252B00%253A00
works, but I think it's more a hack than the real way to configure the URI/DSN.Regards.
Beta Was this translation helpful? Give feedback.
All reactions