Branch: refs/heads/QA_4_6
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 4fd270965082ae17c3ac027dcbb5926244b03c9e
https://github.com/phpmyadmin/phpmyadmin/commit/4fd270965082ae17c3ac027dcbb…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2016-06-06 (Mon, 06 Jun 2016)
Changed paths:
M ChangeLog
M libraries/Error.php
M test/classes/ErrorTest.php
Log Message:
-----------
Avoid rewriting PHP stack frames
Surprisingly PHP stack frames are passed as references to the error
handling code, thus changing value there leads to changing value in the
executed code.
With MySQL issuing warning about incompatible version (different runtime
library than compile time), handling this warning rewrites current stack
frame and the mysql_real_connect later sees parameters as processed by
Error class for display.
We now create copy of the stacktrace to avoid this.
Fixes #12279
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 4fd270965082ae17c3ac027dcbb5926244b03c9e
https://github.com/phpmyadmin/phpmyadmin/commit/4fd270965082ae17c3ac027dcbb…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2016-06-06 (Mon, 06 Jun 2016)
Changed paths:
M ChangeLog
M libraries/Error.php
M test/classes/ErrorTest.php
Log Message:
-----------
Avoid rewriting PHP stack frames
Surprisingly PHP stack frames are passed as references to the error
handling code, thus changing value there leads to changing value in the
executed code.
With MySQL issuing warning about incompatible version (different runtime
library than compile time), handling this warning rewrites current stack
frame and the mysql_real_connect later sees parameters as processed by
Error class for display.
We now create copy of the stacktrace to avoid this.
Fixes #12279
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Commit: 7a6632075336c8ca15e41094d63650442f8fe9d6
https://github.com/phpmyadmin/phpmyadmin/commit/7a6632075336c8ca15e41094d63…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2016-06-06 (Mon, 06 Jun 2016)
Changed paths:
M ChangeLog
M libraries/Error.php
M test/classes/ErrorTest.php
Log Message:
-----------
Merge branch 'QA_4_6'
Compare: https://github.com/phpmyadmin/phpmyadmin/compare/5bc426742dce...7a6632075336
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/docker
Commit: 23cb0767660dd4c4b3e35bcfb775530f2d45c139
https://github.com/phpmyadmin/docker/commit/23cb0767660dd4c4b3e35bcfb775530…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2016-06-06 (Mon, 06 Jun 2016)
Changed paths:
M Dockerfile
M docker-compose.yml
M run.sh
Log Message:
-----------
Use persistent volume for sessions
Issue #32
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/QA_4_6
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 171bcb9a85bbb6ffb7d0a6c4b0cbdb5f7ded9387
https://github.com/phpmyadmin/phpmyadmin/commit/171bcb9a85bbb6ffb7d0a6c4b0c…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2016-06-06 (Mon, 06 Jun 2016)
Changed paths:
M ChangeLog
M libraries/dbi/DBIMysqli.php
Log Message:
-----------
Fix MySQL SSL connection with some PHP versions
It seems that for some PHP versions this flag is needed even though it's
not documented like this. Anyway this flag doesn't cause any harm, so
lets keep it enabled.
Issue #12293
Signed-off-by: Michal Čihař <michal(a)cihar.com>