Page 1 of 1

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

PostPosted: Thu Feb 01, 2007 3:33 am
Author: Teelk
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
Code: Select all
                    if ( $return_chars != -1 )                     {

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