aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions.inc.php')
-rw-r--r--include/functions.inc.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php
index b3bc71950..457fa0a82 100644
--- a/include/functions.inc.php
+++ b/include/functions.inc.php
@@ -318,6 +318,9 @@ function add_style( $string, $search, $style )
// another style for the given $string.
function replace_search( $string, $search )
{
+ // FIXME : with new advanced search, this function needs a rewrite
+ return $string;
+
$words = explode( ',', $search );
$style = 'background-color:white;color:red;';
foreach ( $words as $word ) {