Ajax Made Simple
Posted: Fri Aug 24, 2007 5:14 pm
I just installed the latest AjaxMadeSimple module, which gives the following error on viewing the site:
Fatal error: Call to undefined function: stripos() in ...modules/AjaxMadeSimple/AjaxMadeSimple.module.php on line 120
Line 120 is:
which is a PHP5 function. If you want o make it PHP4 compatible, change the line to:
Nullig
Fatal error: Call to undefined function: stripos() in ...modules/AjaxMadeSimple/AjaxMadeSimple.module.php on line 120
Line 120 is:
Code: Select all
$pos=stripos($content,"</__body");
Code: Select all
$pos=strpos($content, stristr( $content, "</__body" ));
Nullig