Don't convert URLs into links for the plain text format because

it can mess up code sometimes
This commit is contained in:
moodler 2003-07-15 02:19:12 +00:00
parent 7c55a29b37
commit f8a51b414b

View File

@ -457,7 +457,6 @@ function format_text($text, $format=FORMAT_MOODLE, $options=NULL) {
$text = htmlentities($text);
$text = str_replace(" ", "  ", $text);
replace_smilies($text);
convert_urls_into_links($text);
$text = nl2br($text);
return $text;
break;