in lib/weblib.php the following code segment needs updating to reflect deprecated and removed function:
lines 1789 - 1795
case FORMAT_WIKI:
|
$text = wiki_to_html($text);
|
/// This expression turns links into something nice in a text format. (Russell Jungwirth)
|
/// From: http://php.net/manual/en/function.eregi-replace.php and simplified
|
$text = eregi_replace('(<a [^<]*href=["|\']?([^ "\']*)["|\']?[^>]*>([^<]*)</a>)','\\3 [ \\2 ]', $text);
|
return strtr(strip_tags($text), array_flip(get_html_translation_table(HTML_ENTITIES)));
|
break;
|
The wiki_to_html() function has been removed and throws a fatal error.