Code Duplication    Length = 5-10 lines in 2 locations

includes/FileDeleteForm.php 1 location

@@ 274-283 (lines=10) @@
271
				"</td>
272
			</tr>
273
			{$suppress}";
274
		if ( $wgUser->isLoggedIn() ) {
275
			$form .= "
276
			<tr>
277
				<td></td>
278
				<td class='mw-input'>" .
279
					Xml::checkLabel( wfMessage( 'watchthis' )->text(),
280
						'wpWatch', 'wpWatch', $checkWatch, [ 'tabindex' => '3' ] ) .
281
				"</td>
282
			</tr>";
283
		}
284
		$form .= "
285
			<tr>
286
				<td></td>

includes/page/Article.php 1 location

@@ 1817-1821 (lines=5) @@
1814
			Html::closeElement( 'div' );
1815
1816
		# Disallow watching if user is not logged in
1817
		if ( $user->isLoggedIn() ) {
1818
			$form .=
1819
					Xml::checkLabel( wfMessage( 'watchthis' )->text(),
1820
						'wpWatch', 'wpWatch', $checkWatch, [ 'tabindex' => '3' ] );
1821
		}
1822
1823
		$form .=
1824
				Html::openElement( 'div' ) .