Code Duplication    Length = 4-7 lines in 2 locations

src/wp-includes/rss.php 2 locations

@@ 155-161 (lines=7) @@
152
153
		// if we're in the default namespace of an RSS feed,
154
		//  record textinput or image fields
155
		elseif (
156
			$this->feed_type == RSS and
157
			$this->current_namespace == '' and
158
			$el == 'textinput' )
159
		{
160
			$this->intextinput = true;
161
		}
162
163
		elseif (
164
			$this->feed_type == RSS and
@@ 240-243 (lines=4) @@
237
			$this->current_item = array();
238
			$this->initem = false;
239
		}
240
		elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput' )
241
		{
242
			$this->intextinput = false;
243
		}
244
		elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image' )
245
		{
246
			$this->inimage = false;