Code Duplication    Length = 2-7 lines in 2 locations

Themes/default/Calendar.template.php 1 location

@@ 475-481 (lines=7) @@
472
												</a>';
473
										}
474
										// Can we export? Sweet.
475
										if (!empty($event['can_export']))
476
										{
477
											echo '
478
												<a class="modify_event" href="', $event['export_href'], '">
479
													<span class="generic_icons calendar_export" title="', $txt['calendar_export'], '"></span>
480
												</a>';
481
										}
482
483
										echo '</span><br class="clear">';
484
									}

Themes/default/Display.template.php 1 location

@@ 176-177 (lines=2) @@
173
			if ($event['can_edit'])
174
				echo ' <a href="' . $event['modify_href'] . '"><span class="generic_icons calendar_modify" title="', $txt['calendar_edit'], '"></span></a>';
175
176
			if ($event['can_export'])
177
				echo ' <a href="' . $event['export_href'] . '"><span class="generic_icons calendar_export" title="', $txt['calendar_export'], '"></span></a>';
178
179
			echo '
180
						<br>';