From 84c620bb948d4643912e143662d30fc158bd2278 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 22 Jun 2015 15:55:26 +0200 Subject: [PATCH] Remove the strong formatting for 'revdelete-suppress' Just came across this in the interface, and it drew my attention, but I see no reason why this option is more or less important than 'watchthis' or any other option. Change-Id: I8fd2c27dea5f0822514b7ce78a9ad8ff2bbe42f4 --- includes/page/Article.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/page/Article.php b/includes/page/Article.php index 5d7f365ab9..8a11844b36 100644 --- a/includes/page/Article.php +++ b/includes/page/Article.php @@ -1706,10 +1706,8 @@ class Article implements Page { if ( $user->isAllowed( 'suppressrevision' ) ) { $suppress = Html::openElement( 'div', array( 'id' => 'wpDeleteSuppressRow' ) ) . - "" . - Xml::checkLabel( wfMessage( 'revdelete-suppress' )->text(), - 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '4' ) ) . - "" . + Xml::checkLabel( wfMessage( 'revdelete-suppress' )->text(), + 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '4' ) ) . Html::closeElement( 'div' ); } else { $suppress = ''; -- 2.20.1