Revision 11eb2511bfa3b4cbb8381a0f4b41cd03d6ae05ad
Committed on 23/08/2016 1:21 am by
Borna Perak <borna@netgen.hr> [GitHub Diff]
Fix PHP 5.5 parse error
Note: Prior to PHP 5.5, empty() only supports variables; anything else will result in a parse error. In other words, the following will not work: empty(trim()). Instead, use trim() == false.