[BUG & FIX]Period in word script; search page.

The word .script has a period in front of it when viewed from the search page(when "Display results as: Posts" is selected).
Fix is as follows...
OPEN search.php
FIND
AFTER ADD
Fix is as follows...
OPEN search.php
FIND
- Code: Select all
if ( $return_chars != -1 ) {
AFTER ADD
- Code: Select all
if (strpos($message, '..script') !== false) { $message = str_replace ('..script', ".script", $message); }