From 7b61b00333b0f7f5c2f8ce28413b221a0077fc01 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Fri, 29 Aug 2008 13:40:47 +0000 Subject: [PATCH] Fixing HTML escaping. --- includes/ImagePage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ImagePage.php b/includes/ImagePage.php index 2f1faf88a0..38f29527dd 100644 --- a/includes/ImagePage.php +++ b/includes/ImagePage.php @@ -935,7 +935,7 @@ class ImageHistoryList { ); $row .= '' . $thumbnail->toHtml( $options ); } else { - $row .= '' . wfMsg( 'filehist-nothumb' ); + $row .= '' . wfMsgHtml( 'filehist-nothumb' ); } $row .= ""; -- 2.20.1