Code Duplication    Length = 3-3 lines in 2 locations

_inc/lib/icalendar-reader.php 1 location

@@ 728-730 (lines=3) @@
725
				<?php if ( ! empty( $event['LOCATION'] ) ) : ?>
726
					<span class="event-location"><?php echo $this->escape( stripslashes( $event['LOCATION'] ) ); ?></span>
727
				<?php endif; ?>
728
				<?php if ( ! empty( $event['DESCRIPTION'] ) ) : ?>
729
					<span class="event-description"><?php echo wp_trim_words( $this->escape( stripcslashes( $event['DESCRIPTION'] ) ) ); ?></span>
730
				<?php endif; ?>
731
			</li>
732
			<?php endforeach; ?>
733
		</ul>

modules/widgets/upcoming-events.php 1 location

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