From ce50cc701822dde19542e2a07e2673dad6e5891f Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 12 Apr 2005 03:14:29 +0000 Subject: [PATCH] Don't have a cow when a Wiki text is encountered --- lib/weblib.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/weblib.php b/lib/weblib.php index 3354235848c..c2eb914273f 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -1009,7 +1009,10 @@ function format_text($text, $format=FORMAT_MOODLE, $options=NULL, $courseid=NULL case FORMAT_WIKI: // this format is deprecated - error( "Wiki-like format is deprecated. This should not happen. Please post a bug report" ); + $text = '

NOTICE: Wiki-like formatting has been removed from Moodle. You should not be seeing + this message as all texts should have been converted to Markdown format instead. + Please post a bug report to http://moodle.org/bugs with information about where you + saw this message.

'.$text; break; case FORMAT_MARKDOWN: