Code Duplication    Length = 4-4 lines in 2 locations

includes/parser/Parser.php 2 locations

@@ 3913-3916 (lines=4) @@
3910
		# (bug 8068) Allow control over whether robots index a page.
3911
		# @todo FIXME: Bug 14899: __INDEX__ always overrides __NOINDEX__ here!  This
3912
		# is not desirable, the last one on the page should win.
3913
		if ( isset( $this->mDoubleUnderscores['noindex'] ) && $this->mTitle->canUseNoindex() ) {
3914
			$this->mOutput->setIndexPolicy( 'noindex' );
3915
			$this->addTrackingCategory( 'noindex-category' );
3916
		}
3917
		if ( isset( $this->mDoubleUnderscores['index'] ) && $this->mTitle->canUseNoindex() ) {
3918
			$this->mOutput->setIndexPolicy( 'index' );
3919
			$this->addTrackingCategory( 'index-category' );
@@ 3917-3920 (lines=4) @@
3914
			$this->mOutput->setIndexPolicy( 'noindex' );
3915
			$this->addTrackingCategory( 'noindex-category' );
3916
		}
3917
		if ( isset( $this->mDoubleUnderscores['index'] ) && $this->mTitle->canUseNoindex() ) {
3918
			$this->mOutput->setIndexPolicy( 'index' );
3919
			$this->addTrackingCategory( 'index-category' );
3920
		}
3921
3922
		# Cache all double underscores in the database
3923
		foreach ( $this->mDoubleUnderscores as $key => $val ) {