*/
if (!empty($CFG->block_search_limit_index_body)){
- $text = shorten($text, $CFG->block_search_limit_index_body);
+ $text = shorten_text($text, $CFG->block_search_limit_index_body);
}
return $text;
}
// fclose($logppt);
if (!empty($CFG->block_search_limit_index_body)){
- $indextext = shorten($text, $CFG->block_search_limit_index_body);
+ $indextext = shorten_text($text, $CFG->block_search_limit_index_body);
}
$indextext = mb_convert_encoding($indextext, 'UTF-8', 'auto');
}
if (!empty($CFG->block_search_limit_index_body)){
- $text = shorten($text, $CFG->block_search_limit_index_body);
+ $text = shorten_text($text, $CFG->block_search_limit_index_body);
}
return $text;
}
$text = preg_replace("/<[^>]*>/", ' ', $text);
if (!empty($CFG->block_search_limit_index_body)){
- $text = shorten($text, $CFG->block_search_limit_index_body);
+ $text = shorten_text($text, $CFG->block_search_limit_index_body);
}
return $text;
}