Code Duplication    Length = 3-3 lines in 2 locations

engine/lib/river.php 2 locations

@@ 209-211 (lines=3) @@
206
		$wheres[] = "rv.posted >= {$options['posted_time_lower']}";
207
	}
208
209
	if ($options['posted_time_upper'] && is_int($options['posted_time_upper'])) {
210
		$wheres[] = "rv.posted <= {$options['posted_time_upper']}";
211
	}
212
213
	// see if any functions failed
214
	// remove empty strings on successful functions
@@ 341-343 (lines=3) @@
338
		$wheres[] = "rv.posted >= {$options['posted_time_lower']}";
339
	}
340
341
	if ($options['posted_time_upper'] && is_int($options['posted_time_upper'])) {
342
		$wheres[] = "rv.posted <= {$options['posted_time_upper']}";
343
	}
344
345
	if (!access_get_show_hidden_status()) {
346
		$wheres[] = "rv.enabled = 'yes'";