From 01bf3fccd2f237017e9df35dc3e92fc062eb3900 Mon Sep 17 00:00:00 2001 From: Bryan Tong Minh Date: Mon, 19 Oct 2009 19:55:54 +0000 Subject: [PATCH] Parse the edittools message so that it actually works (follow up to r57868). Message is now also customizable. --- includes/HTMLForm.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index aedd1b3251..dd22ea7a63 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -1396,7 +1396,9 @@ class HTMLEditTools extends HTMLFormField { public function getTableRow( $value ) { return "" . '
' - . wfMsgForContent( 'edittools' ) + . wfMsgExt( empty( $this->mParams['message'] ) + ? 'edittools' : $this->mParams['message'], + array( 'parse', 'content' ) ) . "
\n"; } } \ No newline at end of file -- 2.20.1