From: Andrew Garrett Date: Wed, 4 Mar 2009 01:44:02 +0000 (+0000) Subject: Expand a bit X-Git-Tag: 1.31.0-rc.0~42619 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=82135e510351750ce8376a48fc1c69f11b72cfc1;p=lhc%2Fweb%2Fwiklou.git Expand a bit --- diff --git a/includes/LogPage.php b/includes/LogPage.php index 945de9d072..89fa1c587d 100644 --- a/includes/LogPage.php +++ b/includes/LogPage.php @@ -250,6 +250,8 @@ class LogPage { // is that link in HTML form, and so this just gets rid of the ugly [[]]. // However, this is a horrible hack and it doesn't work like you expect if, say, // you want to link to something OTHER than the title of the log entry. + // The real problem, which Erik was trying to fix (and it sort-of works now) is + // that the same messages are being treated as both wikitext *and* HTML. if( $filterWikilinks ) { $rv = str_replace( "[[", "", $rv ); $rv = str_replace( "]]", "", $rv );