Branch: refs/heads/QA_4_7
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: c46082a19699cac774f7a7c762688a20e9277727
https://github.com/phpmyadmin/phpmyadmin/commit/c46082a19699cac774f7a7c7626…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-03 (Tue, 03 Oct 2017)
Changed paths:
M ChangeLog
M libraries/Advisor.php
Log Message:
-----------
Make advisor evaluation a bit stricter
- whitelist function names, we do not want to replace them if they exist
- define missing PMA_MYSQL_INT_VERSION
Fixes #13710
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 99f2b16da16492a1663296f13ec260d70ca5fc0e
https://github.com/phpmyadmin/phpmyadmin/commit/99f2b16da16492a1663296f13ec…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-03 (Tue, 03 Oct 2017)
Changed paths:
M ChangeLog
M doc/config.rst
M libraries/config.default.php
Log Message:
-----------
Lower default value for $cfg['MaxExactCount']
Counting of big InnoDB tables is slow, so try to avoid that as much as
possible.
Fixes #13711
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 319e259b10137fffc6645879acd5443cd7443c33
https://github.com/phpmyadmin/phpmyadmin/commit/319e259b10137fffc6645879acd…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-03 (Tue, 03 Oct 2017)
Changed paths:
M ChangeLog
M libraries/classes/Display/Results.php
Log Message:
-----------
Revert "ChangeLog entry for #12167 and #13702"
This reverts commit 4f7c08e8ecf88ba6690eaa04872f1479ef81032b.
Commit: 6a645a3e896f0ff3068815cad71f41b43ea03d5c
https://github.com/phpmyadmin/phpmyadmin/commit/6a645a3e896f0ff3068815cad71…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-03 (Tue, 03 Oct 2017)
Changed paths:
M libraries/classes/Display/Results.php
M templates/database/structure/body_for_table_summary.phtml
M templates/database/structure/structure_table_row.phtml
M templates/database/structure/table_header.phtml
M test/selenium/PmaSeleniumSqlQueryTest.php
M test/selenium/PmaSeleniumTableBrowseTest.php
M test/selenium/PmaSeleniumTableInsertTest.php
M test/selenium/PmaSeleniumTableOperationsTest.php
Log Message:
-----------
Revert "Fix alignment of action and fixed tests #12167"
This reverts commit 9b56acacabefe6e3248155e3b5793cc78ca71e6f.
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Compare: https://github.com/phpmyadmin/phpmyadmin/compare/44bed27877f7...6a645a3e896f
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: fd1705f45ed33943401fc39fe45a18d9f7b18acc
https://github.com/phpmyadmin/phpmyadmin/commit/fd1705f45ed33943401fc39fe45…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-02 (Mon, 02 Oct 2017)
Changed paths:
M libraries/classes/Template.php
R templates/test/set_helper.phtml
M test/classes/TemplateTest.php
Log Message:
-----------
Simplify Template API
Remove some features we do not seem to use:
- helper functions (this never worked with Twig)
- per class context, it now has to be passed to render
- this avoids need of array_merge call on every render
Signed-off-by: Michal Čihař <michal(a)cihar.com>
Commit: 44bed27877f730ae225b07a3dd01de37eb309212
https://github.com/phpmyadmin/phpmyadmin/commit/44bed27877f730ae225b07a3dd0…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-03 (Tue, 03 Oct 2017)
Changed paths:
M libraries/classes/Template.php
R templates/test/set_helper.phtml
M test/classes/TemplateTest.php
Log Message:
-----------
Merge pull request #13717 from nijel/template-cleanup
Simplify Template API
Compare: https://github.com/phpmyadmin/phpmyadmin/compare/d7d3b5751c61...44bed27877f7
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: d7d3b5751c619b4d416b2bbf0280866ef0ac0cf0
https://github.com/phpmyadmin/phpmyadmin/commit/d7d3b5751c619b4d416b2bbf028…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2017-10-02 (Mon, 02 Oct 2017)
Changed paths:
M libraries/classes/Template.php
Log Message:
-----------
Avoid constructing twig loader for every template
This adds serious overhead and the loader can be still reused.
Issue #13711
Signed-off-by: Michal Čihař <michal(a)cihar.com>