I have a MySQL database, where I use a binary(36) column for the unique id in all of my tables.
When phpMyAdmin 4.3.0 was introduced, it looks like they added a feature where BLOB and BINARY type columns would display their data as a link, and clicking the link would let you download the file (in my case, a .bin file is downloaded).
If you want to edit the data, you have to click on an empty part of the cell to open the "edit" mode.
I can see this being useful, but in my case, I am not interested in the .bin file it downloads.
In older versions of phpMyAdmin (e.g. 4.1.0), this feature is not available (or at least, is not enabled by default). You could simply click the text shown, and the edit dialog would pop up.
I've looked through phpMyAdmin's Documentation and haven't been able to find a setting that disables this. There is the $cfg['ProtectBinary'] setting, but I already have that set to blob, so that shouldn't be an issue.
Ideally I'd like to use the latest version of phpMyAdmin, but only if I can change this setting. Thanks.

