Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-11Retrieve parameters from $_POST in ajax.phpMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-11-28Enforce AJAX responseMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2017-11-28Initial javascript API for handling user configurationMichal Čihař
There ar now configGet/configSet functions which can be used to manipulate user settings. Issue #13466 Signed-off-by: Michal Čihař <michal@cihar.com>
2017-08-02Fix error handling in ajax.phpMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2017-07-08Move classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move Table to PhpMyAdmin namespace - Move Template to PhpMyAdmin namespace - Move ThemeManager to PhpMyAdmin namespace - Move Theme to PhpMyAdmin namespace - Move Tracker to PhpMyAdmin namespace - Move Transformations to PhpMyAdmin namespace - Move TypesMySQL to PhpMyAdmin namespace - Move Types to PhpMyAdmin namespace - Move Util to PhpMyAdmin namespace - Move VersionInformation to PhpMyAdmin namespace - Move Url to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-07-01Move classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move OpenDocument to PhpMyAdmin namespace - Move OutputBuffering to PhpMyAdmin namespace - Move Partition to PhpMyAdmin namespace - Move Pdf class to PhpMyAdmin namespace - Move RecentFavoriteTable to PhpMyAdmin namespace - Move Response to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-06-13Rewrite export alias definingMichal Čihař
The old code did load all colums for all tables in all databases in export. This can easily explode for server wide exports or exports on database with lot of tables. It has been rewritten in a way to load required data on demand from server. This will make aliases defining slightly slower, but I think it's acceptable price for making the export work on larger databases. Fixes #13008 Signed-off-by: Michal Čihař <michal@cihar.com>