Page 1 of 1

[BUG & FIX]Period before word script; news block.

PostPosted: Sat Feb 03, 2007 4:46 am
Author: Teelk
The word .script has a period before it and any word containing the word .script is also affected. eg. ..script, de..scription.

The fix is as follows...

OPEN includes/news.php
FIND
Code: Select all
    $text = str_replace("\n", "\n<br>\n", $text);

AFTER ADD
Code: Select all
   if ( strpos($text, '..script') !== false){
   $text = str_replace("..script", ".script", $text);
   }