Unknown modifier 't' in str_ireplace.php

quynho1994
13 years, 5 months ago
It only in template wap :
Warning: preg_match() [function.preg-match]: Unknown modifier 't' in /home/t1family/domains/vuonmo.tk/public_html/home/libraries/phputf8/str_ireplace.php on line 40

Warning: preg_match() [function.preg-match]: Unknown modifier 'p' in /home/t1family/domains/vuonmo.tk/public_html/home/libraries/phputf8/str_ireplace.php on line 40

Warning: preg_match() [function.preg-match]: Unknown modifier 'd' in /home/t1family/domains/vuonmo.tk/public_html/home/libraries/phputf8/str_ireplace.php on line 40


demo: wap.vuonmo.tk
dryabov
13 years, 5 months ago
It's known issue of Joomla1.5 (fixed in 1.6).
To avoid it in MobileJoomla, replace in administrator/components/com_mobilejoomla/markups/wml.php lines
		$text = JString::str_ireplace('</td>', ' | ', $text);
$text = JString::str_ireplace('</span>', '', $text);
...
$text = JString::str_ireplace('</dt>', '</strong><br/>', $text);

by
		$text = str_ireplace('</td>', ' | ', $text);
$text = str_ireplace('</span>', '', $text);
...
$text = str_ireplace('</dt>', '</strong><br/>', $text);

By continuing to use this site you consent to the use of cookies on your device as described in our cookie policy unless you have disabled them. This site will not function correctly without cookies.

I accept cookies from this site.