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
2019-04-16Fix spatial functionsWilliam Desportes
Signed-off-by: William Desportes <williamdes@wdes.fr>
2019-04-16Fix #14383 #12865 - Fix GIS functions for mysql 8.0William Desportes
Fixes: #14383 Fixes: #12865 Signed-off-by: William Desportes <williamdes@wdes.fr>
2019-03-15Fix #14991 - TypeError in GIS editorWilliam Desportes
Fixes: Cannot read property 'w' of null See: https://github.com/openlayers/ol2/issues/669 Signed-off-by: William Desportes <williamdes@wdes.fr>
2018-11-11Retrieve parameters from $_POST in GIS data editorMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-10-30Remove clearright classMichal Čihař
This element is currently not rendered at all, so avoid adding class for it. Issue #13777 Signed-off-by: Michal Čihař <michal@cihar.com>
2017-10-25added changes to theme originalPaweł Skokowski
Signed-off-by: Paweł Skokowski <skokowskipawel@icloud.com>
2017-10-25Removed inline css in gis_data_editor.phpPaweł Skokowski
Signed-off-by: Paweł Skokowski <skokowskipawel@icloud.com>
2017-07-19Move GIS classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.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-29Move classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move Advisor to PhpMyAdmin namespace - Move Bookmark to PhpMyAdmin namespace - Move Charsets to PhpMyAdmin namespace - Move Config class to PhpMyAdmin namespace - Move Console class to PhpMyAdmin namespace - Move Core to PhpMyAdmin namespace - Move DatabaseInterface to PhpMyAdmin namespace - Move DbList to PhpMyAdmin namespace - Move DbQbe to PhpMyAdmin namespace - Move DbSearch to PhpMyAdmin namespace - Move DisplayResults to PhpMyAdmin namespace - Move Encoding to PhpMyAdmin namespace - Move Error to PhpMyAdmin namespace - Move ErrorHandler to PhpMyAdmin namespace - Move File to PhpMyAdmin namespace - Move Font to PhpMyAdmin namespace - Move Footer to PhpMyAdmin namespace - Move Header to PhpMyAdmin namespace - Move Index to PhpMyAdmin namespace - Move IndexColumn to PhpMyAdmin namespace - Move LanguageManager to PhpMyAdmin namespace - Move Language to PhpMyAdmin namespace - Move Linter to PhpMyAdmin namespace - Move ListAbstract to PhpMyAdmin namespace - Move ListDatabase to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-06-03Refactor the core functions into static methodsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-05-23Remove inline CSSMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2016-12-07Simplify Response object handlingMichal Čihař
- always use use and short name - avoid calling getInstance() several times in one script Signed-off-by: Michal Čihař <michal@cihar.com>
2016-06-16Merge branch 'QA_4_6'Michal Čihař
2016-06-16Ensure we use escaped version of typeMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2016-06-16Merge branch 'QA_4_6'Michal Čihař
2016-06-16Fix syntax errorMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2016-06-16Merge branch 'QA_4_6'Michal Čihař
2016-06-16Fix handing of GIS dataMichal Čihař
* Force geometry count to be integer * Ensure proper escaping of GIS data Signed-off-by: Michal Čihař <michal@cihar.com>
2016-02-22Refactored url parmeters generating, Issue #11990Durgesh
Signed-off-by: Durgesh <007durgesh219@gmail.com>
2016-01-19Merge branch 'QA_4_5'Michal Čihař
2016-01-19Validate parameters before useMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2016-01-04Remove /*overload*/ prefix from mb_* callsMichal Čihař
I believe this was temporary flagging to see which code is migrated and can be safely removed now. Signed-off-by: Michal Čihař <michal@cihar.com>
2015-12-21Remove unused PMA_String classMichal Čihař
The class is no longer used: - the ctype part is not needed by new SQL parser - the utf-8 manipulation was replaced by direct usage of mbstring Signed-off-by: Michal Čihař <michal@cihar.com>
2015-12-21Remove unused pmaString variableMichal Čihař
It was used in past when we didn't rely on mbstring. Signed-off-by: Michal Čihař <michal@cihar.com>
2015-12-06Remove some unnecessary string concatenationsMarc Delisle
https://github.com/dseguy/clearPHP/blob/master/rules/no-unnecessary-string-concatenation.md Signed-off-by: Marc Delisle <marc@infomarc.info>
2015-12-05Remove some unnecessary string concatenationsMarc Delisle
https://github.com/dseguy/clearPHP/blob/master/rules/no-unnecessary-string-concatenation.md Signed-off-by: Marc Delisle <marc@infomarc.info>
2015-12-04Remove some unnecessary string concatenationsMarc Delisle
https://github.com/dseguy/clearPHP/blob/master/rules/no-unnecessary-string-concatenation.md Signed-off-by: Marc Delisle <marc@infomarc.info>
2015-12-03Remove some unnecessary string concatenationsMarc Delisle
https://github.com/dseguy/clearPHP/blob/master/rules/no-unnecessary-string-concatenation.md Signed-off-by: Marc Delisle <marc@infomarc.info>
2015-11-03Another instance of legacy supportMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2015-09-14Revert PMA_String rename.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-12Set namespaces on GIS classes.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-01Rename classes files.Hugues Peccatte
Rename classes. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-01Set namespace on Advisor, Config, Console and Util classes.Hugues Peccatte
Set namespace on DbQbe. Set namespace to 'DbSearch'. Split Advisor.class.php file. Change Advisor namespace. Rename DbQbe class and file. Set namespace on DisplayResults. Set namespace on Error. Use namespace for ErrorHandler. Add class autoloader. Change ErrorHandler filename. Remove some require. Update Config namespace path. Update PMA_Util to PMA\libraries\Util. Rename Font and File classes files. Use namespace for Footer. Set namespace in all libraries classes. Namespace OutputBuffering. Export SubPartition. Rename Partition file. Namespace PDF. Namespace RecentFavoriteTable. Replace PMA_Response by Response and PMA_Message by Message. Update uses and calls. Fix unit tests. Fix SqlParser autoload. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-08-18Fix x coordinates of these points are repeated as y coordinatesMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2015-07-23Make PHPCS happy.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-06-16Optimize logic in tbl_gis_visualization.phpJason
Signed-off-by: Jason <jason.daurus@gmail.com>
2015-06-16Finish refactoring tbl_*.lib.phpJason
Signed-off-by: Jason <jason.daurus@gmail.com>
2015-03-06Remove unneeded closing tagsRahul Kadyan
Closing tags at the end of file are not mandatory. It is often suggested to omit to closing tags at the end of file to prevent unwanted effects as PHP will start output buffering if there is any character after closing tag. Reference: http://php.net/manual/en/language.basic-syntax.phptags.php Signed-off-by: Rahul Kadyan <hi@znck.me>
2014-10-04Replace mb functions by standard string functions.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2014-09-28Replace PMA_String uses by mb_* calls.Hugues Peccatte
Remove part of unused variables. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2014-09-06Mass modifications to use PMA_String.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2014-02-02Better messasge after creating a bookmarkMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2014-01-22Suffix files containing classes with .class.php file extensionMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2014-01-08Space around . operator - mroe instancesMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2014-01-08Fix coding styleMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2013-12-12Fix PHPCS errors.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2013-11-11Huge PHPDoc update.Hugues Peccatte
2013-09-27gis insert/edit error correctedSpun Nakandala