Commit Graph

124989 Commits

Author SHA1 Message Date
Liviu-Mihail Concioiu
2fc2cb11f2 Fix textarea resize horizontally
Signed-off-by: Liviu-Mihail Concioiu <liviu.concioiu@gmail.com>
2024-07-03 13:49:49 +02:00
Liviu-Mihail Concioiu
bb8006e8a1 Fix textarea resize horizontally
Signed-off-by: Liviu-Mihail Concioiu <liviu.concioiu@gmail.com>
2024-07-02 14:49:32 +02:00
Ricky From Hong Kong
f8dd8d3475
Translated using Weblate (Chinese (Traditional))
Currently translated at 96.4% (3305 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/zh_Hant/
Signed-off-by: Ricky From Hong Kong <lamricky11@hotmail.com>
2024-06-27 10:10:06 +02:00
Ivan
073abbcc2f
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/uk/
Signed-off-by: Ivan <ivan47044704@gmail.com>
2024-06-24 20:09:14 +02:00
Maurício Meneghini Fauth
4f67631d48
Fix undefined variables in table/zoom_search/result_form.twig
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-22 17:34:21 -03:00
Maurício Meneghini Fauth
0631cdf07f
Merge #19141 Add cookie prefix '-__Secure-' to cookies
Fixes #18608

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-16 20:14:07 -03:00
martin762
cb56b7fe45
Add cookie prefix '-__Secure-' to cookies
The PR will modify the 'GetCookieName' functtion by hard coding the prefix ' __Secure-' to each cookie name when 'isHttps()' is true, Apparently the prefix will be recognise
d and enforced by most browsers (ignored by the older ones).Update Config.php

The raison d'aitre for this PR is contained in my issue # 18608.

This PR will replace the line 953, part of the GetCookieName function :
return $cookieName . ( $this->isHttps ? '_https' : '' );

with the amended line:
return ( $this->isHttps() ? '__Secure-' : '’ ) . $cookieName . ( $this->isHttps() ? '_https' : ‘’ );

Signed-off-by: martin762 <martin762green@btinternet.com>
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-16 20:04:37 -03:00
Maurício Meneghini Fauth
7baf4f8f3c
Merge #19188 Simulate query fixes
Fixes #19187

Depends on https://github.com/phpmyadmin/sql-parser/pull/560 to work
without regression in the case of a condition `0` because now the
query is parsed and built again to remove comments.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-16 11:55:04 -03:00
Ricky From Hong Kong
1cb4390a2b
Translated using Weblate (Chinese (Traditional))
Currently translated at 96.4% (3305 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/zh_Hant/
Signed-off-by: Ricky From Hong Kong <lamricky11@hotmail.com>
2024-06-14 20:09:23 +00:00
Burak Yavuz
efbf2f3e94
Translated using Weblate (Turkish)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/tr/
Signed-off-by: Burak Yavuz <hitowerdigit@hotmail.com>
2024-06-14 20:09:22 +00:00
Ricky From Hong Kong
cfbd72df8e
Translated using Weblate (Chinese (Traditional))
Currently translated at 95.9% (3288 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/zh_Hant/
Signed-off-by: Ricky From Hong Kong <lamricky11@hotmail.com>
2024-06-13 18:09:18 +02:00
Ricky From Hong Kong
2782c241ac
Translated using Weblate (Dutch)
Currently translated at 99.9% (3426 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/nl/
Signed-off-by: Ricky From Hong Kong <lamricky11@hotmail.com>
2024-06-13 18:09:17 +02:00
Ricky From Hong Kong
59586f088f
Translated using Weblate (Azerbaijani)
Currently translated at 45.4% (1557 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/az/
Signed-off-by: Ricky From Hong Kong <lamricky11@hotmail.com>
2024-06-13 18:09:15 +02:00
Maurício Meneghini Fauth
e7983661ec
Update JS dependencies
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-12 15:27:02 -03:00
Maurício Meneghini Fauth
105dd39a3a
Merge #19189 - Fix sorting with group by etc
Fixes #18075

Also fix the check if limit needs to be removed.
`$analyzedSqlResults['limit']` is a `bool`, never `null`;

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-07 10:41:01 -03:00
Maurício Meneghini Fauth
a38f06ef08
Merge #19152 - Add custom rows value to select
Add custom page size to browse table when coming from search view

Fixes #18394

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-06 10:55:36 -03:00
Maurício Meneghini Fauth
c66cdc26a9
Merge pull request #19192 from MauricioFauth/routes-cache
Fix routes cache validation

- Fixes #19086
2024-06-03 20:23:16 -03:00
Maurício Meneghini Fauth
ece6f4da0b
Fix routes cache validation
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-06-03 20:04:59 -03:00
Masahiro Fujimoto
7df158991d
Translated using Weblate (Japanese)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/ja/
Signed-off-by: Masahiro Fujimoto <mfujimot@gmail.com>
2024-06-03 04:09:15 +00:00
Maximilian Krög
bf10893215
Fix column sorting with GROUP BY
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2024-06-01 18:14:34 +02:00
Maximilian Krög
3b84890770
Fix simulating query with -- comment
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2024-06-01 00:58:42 +02:00
Maximilian Krög
6d917b5b7f
Fix simulate multiple queries with ; in a string
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2024-06-01 00:16:35 +02:00
Maurício Meneghini Fauth
962507835f
Merge pull request #19146 from MoonE/limit-subquery-order
Fix column sorting with limit subquery

Fixes #16817
2024-05-31 17:38:25 -03:00
Hotripak
6c02c78d25
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/uk/
Signed-off-by: Hotripak <hotr1pak@gmail.com>
2024-05-31 21:42:23 +02:00
hoanghuy309
2ba2f5c533
Translated using Weblate (Vietnamese)
Currently translated at 83.5% (2863 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/vi/
Signed-off-by: hoanghuy309 <hoanghuy309@gmail.com>
2024-05-31 07:09:17 +02:00
hoanghuy309
0eddf28d7b
Translated using Weblate (Vietnamese)
Currently translated at 83.3% (2856 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/vi/
Signed-off-by: hoanghuy309 <hoanghuy309@gmail.com>
2024-05-29 12:37:37 +02:00
Maurício Meneghini Fauth
9a3d2b8ca7
Merge pull request #19174 from faissaloux/prevent-use-alias-with-asterisk
Fix `Query Generator` column alias with asterisk
2024-05-24 11:31:55 -03:00
Maurício Meneghini Fauth
3dad383953
Merge pull request #19158 from faissaloux/fix-query-generator-backticks
Fix `Query Generator` backticks
2024-05-23 19:25:45 -03:00
Maximilian Krög
901ea2646b
Fix column sorting with limit subquery
The used regex found the subquery limit and added the order
clause before that. Better to use Query::replaceClause here.

Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2024-05-23 23:59:43 +02:00
Maurício Meneghini Fauth
ca2d519f07
Merge pull request #19145 from MoonE/duplicate-url-params
Remove duplicate server and lang param from links
2024-05-23 18:50:55 -03:00
Maurício Meneghini Fauth
1a781a0898
Update PHPStan baseline
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-05-23 18:44:22 -03:00
Masahiro Fujimoto
a793f4ffba
Translated using Weblate (Japanese)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/ja/
Signed-off-by: Masahiro Fujimoto <mfujimot@gmail.com>
2024-05-21 09:01:51 +02:00
faissaloux
5fb7565d25 disable col alias when asterisk choosen for column
Signed-off-by: faissaloux <fwahabali@gmail.com>
2024-05-20 17:40:09 +01:00
Andrei Stepanov
d9dc5d3daf
Translated using Weblate (Russian)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/ru/
Signed-off-by: Andrei Stepanov <adem4ik@gmail.com>
2024-05-17 15:01:47 +02:00
גבריאל עדי
46dbdb9a59
Translated using Weblate (Hebrew)
Currently translated at 46.1% (1581 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/he/
Signed-off-by: גבריאל עדי <gabrieladi613@gmail.com>
2024-05-17 15:01:46 +02:00
Peter Stofko
e5a824e0eb
Translated using Weblate (Slovak)
Currently translated at 72.8% (2496 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/sk/
Signed-off-by: Peter Stofko <stofi@stofi.sk>
2024-05-15 15:34:32 +02:00
Yaron Shahrabani
aa121062da
Translated using Weblate (Hebrew)
Currently translated at 46.1% (1580 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/he/
Signed-off-by: Yaron Shahrabani <sh.yaron@gmail.com>
2024-05-15 15:34:26 +02:00
Kristijan \"Fremen\" Velkovski
a8458aaa9c
Translated using Weblate (Macedonian)
Currently translated at 29.0% (997 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/mk/
Signed-off-by: "Kristijan \"Fremen\" Velkovski" <me@krisfremen.com>
2024-05-13 08:01:28 +02:00
faissaloux
0449ec2087 fix Query Generator backticks
Signed-off-by: faissaloux <fwahabali@gmail.com>
2024-05-12 14:54:53 +01:00
Kristijan \"Fremen\" Velkovski
da10e0b19b
Translated using Weblate (Macedonian)
Currently translated at 29.0% (996 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/mk/
Signed-off-by: "Kristijan \"Fremen\" Velkovski" <me@krisfremen.com>
2024-05-10 09:26:53 +02:00
Maximilian Krög
1a79e7dc65
Add custom rows value to select
In the search view any positive integer can be set as
page size. In case a non standard one is selected it
is added to the select so it is remembered for further
actions.

Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2024-05-09 04:22:03 +02:00
Andrei Stepanov
99c2939eda
Translated using Weblate (Russian)
Currently translated at 100.0% (3427 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/ru/
Signed-off-by: Andrei Stepanov <adem4ik@gmail.com>
2024-05-03 22:07:14 +02:00
Maximilian Krög
626aa23841
Remove duplicate server and lang param from links
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
2024-05-03 02:54:06 +02:00
Salvador Domingues
eb17438c00
Translated using Weblate (Portuguese)
Currently translated at 97.8% (3353 of 3427 strings)

[ci skip]

Co-authored-by: Salvador Domingues <salvadordomingues@gmail.com>
Signed-off-by: Salvador Domingues <salvadordomingues@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/pt/
Translation: phpMyAdmin/5.2
2024-05-02 20:18:26 +02:00
Faissal Wahabali
de7a96467f
Fix notification links (#18243)
* fix not working notification copy link

Signed-off-by: faissaloux <fwahabali@gmail.com>

* fix not working notification links

Signed-off-by: faissaloux <fwahabali@gmail.com>

* fix notification links tooltip messages

Signed-off-by: faissaloux <fwahabali@gmail.com>

* update Edit Query message

Signed-off-by: faissaloux <fwahabali@gmail.com>

* remove unused event param

Signed-off-by: faissaloux <fwahabali@gmail.com>

* refactor

Signed-off-by: faissaloux <fwahabali@gmail.com>

* revert Edit Query message

Signed-off-by: faissaloux <fwahabali@gmail.com>

* refactor

Signed-off-by: faissaloux <fwahabali@gmail.com>

* code style

Signed-off-by: faissaloux <fwahabali@gmail.com>

* refactor

Signed-off-by: faissaloux <fwahabali@gmail.com>

---------

Signed-off-by: faissaloux <fwahabali@gmail.com>



Fixes #18241

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-04-30 16:08:56 -03:00
Maurício Meneghini Fauth
ba5533c2c2
Merge pull request #19101 from kamil-tekiela/Fix-to-stop-processing-queries-on-error
Fix to stop processing queries on error

Fixes #19091

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-04-30 15:10:56 -03:00
Mattia Rizzolo
3dfaed3554
Fix inverted logic hide serverlist (#18021)
* Reflow lines to arguably better understand the logic

There are a bit too many branch in this single line..

Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>

* Fix inverted logic in the serverlist in the home page

Here the server list was visible when it wasn't supposed to be, and
hidden when it was supposed to be visible.

Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>

---------

Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-04-29 21:21:36 -03:00
Hosted Weblate
8f5b44612a
Merge branch 'origin/QA_5_2' into Weblate.
[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/
2024-04-29 07:07:24 +02:00
Yaron Shahrabani
46bd72ac85
Translated using Weblate (Hebrew)
Currently translated at 46.0% (1579 of 3427 strings)

[ci skip]

Translation: phpMyAdmin/5.2
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-2/he/
Signed-off-by: Yaron Shahrabani <sh.yaron@gmail.com>
2024-04-29 07:07:16 +02:00
William Desportes
69d9b8b85c
Add a ChangeLog entry for #19041
Signed-off-by: William Desportes <williamdes@wdes.fr>
2024-04-28 17:24:26 +02:00