The new PhpMyAdmin, the 5.2.3, unlike the previous, the 5.2.2, has “like” instead of “like %…%” as default search command.
If you prefer the previous default you can do it following these instructions .
I managed to bo back to the previous default modifying only the file phpMyAdmin/libraries/classes/Types.php
at rows 99 -100
from
return [
'LIKE',
'LIKE %...%',
toreturn [
'LIKE %...%',
'LIKE',