Code Duplication    Length = 4-4 lines in 2 locations

includes/EditPage.php 2 locations

@@ 1338-1341 (lines=4) @@
1335
1336
		$title = Title::newFromText( $preload );
1337
		# Check for existence to avoid getting MediaWiki:Noarticletext
1338
		if ( $title === null || !$title->exists() || !$title->userCan( 'read', $wgUser ) ) {
1339
			// TODO: somehow show a warning to the user!
1340
			return $handler->makeEmptyContent();
1341
		}
1342
1343
		$page = WikiPage::factory( $title );
1344
		if ( $page->isRedirect() ) {
@@ 1347-1350 (lines=4) @@
1344
		if ( $page->isRedirect() ) {
1345
			$title = $page->getRedirectTarget();
1346
			# Same as before
1347
			if ( $title === null || !$title->exists() || !$title->userCan( 'read', $wgUser ) ) {
1348
				// TODO: somehow show a warning to the user!
1349
				return $handler->makeEmptyContent();
1350
			}
1351
			$page = WikiPage::factory( $title );
1352
		}
1353