Code Duplication    Length = 3-3 lines in 2 locations

includes/Message.php 2 locations

@@ 796-798 (lines=3) @@
793
		$string = $this->fetchMessage();
794
795
		if ( $string === false ) {
796
			if ( $this->format === 'plain' || $this->format === 'text' ) {
797
				return '<' . $this->key . '>';
798
			}
799
			return '&lt;' . htmlspecialchars( $this->key ) . '&gt;';
800
		}
801
@@ 856-858 (lines=3) @@
853
				// Doh! Cause a fatal error after all?
854
			}
855
856
			if ( $this->format === 'plain' || $this->format === 'text' ) {
857
				return '<' . $this->key . '>';
858
			}
859
			return '&lt;' . htmlspecialchars( $this->key ) . '&gt;';
860
		}
861
	}