Cyberian75
Joined: 26 Sep 2002 Posts: 1019 Location: Oregon
|
Posted: Thu Nov 27, 2003 6:50 am Post subject: |
|
|
I was having the same problem, so I didn't provide RSS feeds on my site. I was poking around tonight, though, and I think the following fixes that problem.
At the end of "b2vars.php" file, locate:
Code: |
# generates smilies' search & replace arrays
foreach($b2smiliestrans as $smiley => $img) {
$b2_smiliessearch[] = $smiley;
$smiley_masked = '';
for ($i = 0; $i < strlen($smiley); $i = $i + 1) {
$smiley_masked .= substr($smiley, $i, 1).chr(160);
}
$b2_smiliesreplace[] = "<img src='$smilies_directory/$img' alt='$smiley_masked' />";
}
|
And take out ".chr(160)". I think this solves the problem. _________________ Michael P. |
|