Code Duplication    Length = 3-3 lines in 2 locations

_inc/lib/icalendar-reader.php 1 location

@@ 775-777 (lines=3) @@
772
				<?php if ( ! empty( $event['LOCATION'] ) ) : ?>
773
					<span class="event-location"><?php echo $this->escape( stripslashes( $event['LOCATION'] ) ); ?></span>
774
				<?php endif; ?>
775
				<?php if ( ! empty( $event['DESCRIPTION'] ) ) : ?>
776
					<span class="event-description"><?php echo wp_trim_words( $this->escape( stripcslashes( $event['DESCRIPTION'] ) ) ); ?></span>
777
				<?php endif; ?>
778
			</li>
779
			<?php endforeach; ?>
780
		</ul>

modules/widgets/upcoming-events.php 1 location

@@ 102-104 (lines=3) @@
99
					<?php if ( ! empty( $event['LOCATION'] ) ) : ?>
100
						<span class="event-location"><?php echo $ical->escape( stripslashes( $event['LOCATION'] ) ); ?></span>
101
					<?php endif; ?>
102
					<?php if ( ! empty( $event['DESCRIPTION'] ) ) : ?>
103
						<span class="event-description"><?php echo wp_trim_words( $ical->escape( stripcslashes( $event['DESCRIPTION'] ) ) ); ?></span>
104
					<?php endif; ?>
105
				</li>
106
				<?php endforeach; ?>
107
			</ul>