PHP Array Square Bracket Syntax: [] instead of array()
Database management in a single PHP file
Brought to you by:
jakubvrana
The code introduced in commit: 1883e250ff9b84e50505b970bca33d7a53a449ba uses the ['a', 'b', 'c'] array syntax instead of array('a', 'b', 'c') syntax.
Now, I know that any current version of PHP would be able to handle this, but if this is fixed, it will allow adminer to work on older versions of PHP, like the one I'm stuck with, on a really old, unsupported server.
The last version 4.6.x worked flawlessly, but this was the only change I had to make to get 4.7 to work on this old PHP 5.3 server.
It's a feature, not a bug. ;)
Fixed by da76e6b9.