J
|
Jane 12/1/2009 |
Maali, |
M
|
maali author 12/1/2009 |
Maali, please contact support@xlinesoft.com with this problem.
|
M
|
maali author 12/1/2009 |
Maali, please contact support@xlinesoft.com with this problem.
|
A
|
anu 12/1/2009 |
Hi again I fixed the problem: I changed the followings: xtempl.php from: $varparams = split("",trim(substr($str,$pos+2,$endpos-$pos-2))); to: $varparams = preg_split("/[\s,]+/",trim(substr($str,$pos+2,$endpos-$pos-2))); commonfunctions.php from: $keys = split(" ",$keywords); to: $keys = preg_split("/[\s,]+/",$keywords); I am not sure it is what is suppose to split <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=45853&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> but tings are working again. thanks anyway. BR Maali
|
H
|
homer.favenir 1/5/2010 |
Hi, In PHP5.3 split() function is deprecated,so replacing the split() function with explode () will solve the problem,I have used it in other examples. --Anu
|
J
|
Jane 1/7/2010 |
You should update only include/commonfunctions.php file only. |
N
|
Nic 2/4/2010 |
Hi again I fixed the problem: I changed the followings: xtempl.php from: $varparams = split("",trim(substr($str,$pos+2,$endpos-$pos-2))); to: $varparams = preg_split("/[\s,]+/",trim(substr($str,$pos+2,$endpos-$pos-2))); commonfunctions.php from: $keys = split(" ",$keywords); to: $keys = preg_split("/[\s,]+/",$keywords); I am not sure it is what is suppose to split <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=47428&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> but tings are working again. thanks anyway. BR Maali
|