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

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
AFTER ADD
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);
}