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
-
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