This is pretty disappointing service. You’re not even going to do a little digging?
It didn’t take me long to find that line 64 is: $ret[$key][‘title’] = htmlspecialchars(__($val->post_title), ENT_COMPAT | ENT_HTML401 | ENT_SUBSTITUTE);
After reading the php docs, turns out they say “5.4.0: the constants ENT_SUBSTITUTE, ENT_DISALLOWED, ENT_HTML401, ENT_XML1, ENT_XHTML and ENT_HTML5 were added,” which explains why it is only finding the ENT_COMPAT constant.
Do you guys not even have it documented anywhere that your theme is not compatible with php 5.3?