From b1d16453d80fcd70911f7f8485aedc3abb283d96 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 21 Apr 2008 22:59:54 +0000 Subject: [PATCH] Use prefixedText(), rather than IRC clean text for replace call on comment to make blue color (bug 13662) --- includes/RecentChange.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index b4abc1b27b..149311c832 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -596,7 +596,7 @@ class RecentChange $user = $this->cleanupForIRC( $rc_user_text ); if ( $rc_type == RC_LOG ) { - $comment = $this->cleanupForIRC( str_replace( $title, "\00302$title\00310", $actionComment ) ); + $comment = $this->cleanupForIRC( str_replace($titleObj->getPrefixedText(),"\00302$title\00310",$actionComment) ); $flag = $rc_log_action; } else { $comment = $this->cleanupForIRC( $rc_comment ); -- 2.20.1