Skip to content

Commit 54fc311

Browse files
committed
Fix escape_mysql_wildcards Twig filter
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent 2068d82 commit 54fc311

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ phpMyAdmin - ChangeLog
2929
- issue Fixed an PHP undefined index notice on export
3030
- issue #14555 Fixed JavaScript error when auto completion is open (upgraded CodeMirror to 5.60.0)
3131
- issue #16647 Fixed preferences form not showing texts and not respecting TabsMode config
32+
- issue Fixed escape_mysql_wildcards Twig filter
3233

3334
5.1.0 (2021-02-24)
3435
- issue #15350 Change Media (MIME) type references to Media type

libraries/classes/Twig/UtilExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public function getFilters()
163163
),
164164
new TwigFilter(
165165
'escape_mysql_wildcards',
166-
'PhpMyAdmin\Util::convertBitDefaultValue'
166+
'PhpMyAdmin\Util::escapeMysqlWildcards'
167167
),
168168
];
169169
}

0 commit comments

Comments
 (0)