Topic: Rickard: Just a minor thing I dont get
In profile, and it might exist in other files, you can find this on line 1351:
substr($entry, strlen($entry)-4)
Why not simply use substr($entry, -4)?
EDIT: And on the line under there is substr($entry, 0, strlen($entry)-4), where substr($entry, 0, -4) works just fine.