Code Duplication    Length = 4-4 lines in 2 locations

includes/parser/Parser.php 2 locations

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