Branch: refs/heads/master
Home: https://github.com/phpmyadmin/sql-parser
Commit: 16d4f15ce1cf79a951caac46c080edab1892092a
https://github.com/phpmyadmin/sql-parser/commit/16d4f15ce1cf79a951caac46c08…
Author: Dan Ungureanu <udan1107(a)gmail.com>
Date: 2017-04-11 (Tue, 11 Apr 2017)
Changed paths:
M CHANGELOG.md
M src/Token.php
M tests/Lexer/TokenTest.php
M tests/Utils/TokensTest.php
M tests/data/lexer/lexString.out
M tests/data/lexer/lexStringErr1.out
M tests/data/parser/parseSelectIntoOptions1.out
M tests/data/parser/parseSelectIntoOptions2.out
M tests/data/parser/parseSelectIntoOptions3.out
Log Message:
-----------
Fixes wrong extract of string tokens with escaped characters.
Fixes #40.
Signed-off-by: Dan Ungureanu <udan1107(a)gmail.com>
Commit: 6f9eeb6bdb3fa177f6929602f13fc43781277adb
https://github.com/phpmyadmin/sql-parser/commit/6f9eeb6bdb3fa177f6929602f13…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-04-12 (Wed, 12 Apr 2017)
Changed paths:
M CHANGELOG.md
M src/Token.php
M tests/Lexer/TokenTest.php
M tests/Utils/TokensTest.php
M tests/data/lexer/lexString.out
M tests/data/lexer/lexStringErr1.out
M tests/data/parser/parseSelectIntoOptions1.out
M tests/data/parser/parseSelectIntoOptions2.out
M tests/data/parser/parseSelectIntoOptions3.out
Log Message:
-----------
Merge pull request #149 from udan11/fix_40
Fixes wrong extract of string tokens with escaped characters.
Compare: https://github.com/phpmyadmin/sql-parser/compare/e30ae6fe6bc7...6f9eeb6bdb3f
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 34795cd7420e02203bfff526c46a5fa0f4baf82a
https://github.com/phpmyadmin/phpmyadmin/commit/34795cd7420e02203bfff526c46…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-04-11 (Tue, 11 Apr 2017)
Changed paths:
M libraries/DatabaseInterface.php
M test/classes/DatabaseInterfaceTest.php
Log Message:
-----------
Do not use intdiv() it's PHP 7 only
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/docker
Commit: 1bcaeb5fece5f9dd72a9bb2036fdf7d3c7756cd4
https://github.com/phpmyadmin/docker/commit/1bcaeb5fece5f9dd72a9bb2036fdf7d…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-04-11 (Tue, 11 Apr 2017)
Changed paths:
M etc/phpmyadmin/config.inc.php
Log Message:
-----------
Fix getting empty values from environment
If environemnt variable is empty and is not part of $_ENV, the getenv
(obviously) returns empty string, but we should use it.
Fixes #118
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 05e87b4a9299afdf6c0e09762b31d4cea1d68eba
https://github.com/phpmyadmin/phpmyadmin/commit/05e87b4a9299afdf6c0e09762b3…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-04-11 (Tue, 11 Apr 2017)
Changed paths:
M libraries/DatabaseInterface.php
M libraries/common.inc.php
Log Message:
-----------
Move authentication failure handling out of DatabaseInterface
We really want to check return value of DatabaseInterface::connect() and
not handle every failure case individually there.
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/docker
Commit: 1204bcd696b1fe969dea7d62f56134ef5dbfaf97
https://github.com/phpmyadmin/docker/commit/1204bcd696b1fe969dea7d62f56134e…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-04-11 (Tue, 11 Apr 2017)
Changed paths:
M etc/phpmyadmin/config.inc.php
Log Message:
-----------
Do not set password to null when not specified
This makes the authentication code think this parameter was not set at
all.
Fixes #118
Signed-off-by: Michal Čihař <michal(a)cihar.com>