Code Duplication    Length = 8-8 lines in 2 locations

php/jodel-web.php 2 locations

@@ 478-485 (lines=8) @@
475
		</content>
476
		<aside>
477
			<?php
478
				if($isDetailedView)
479
				{?>
480
					<a href="index.php?vote=up&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>">
481
		  <?php }
482
				else
483
				{?>
484
					<a href="index.php?vote=up&postID=<?php echo $post['post_id'];?>">
485
		  <?php } ?>
486
						<i class="fa fa-angle-up fa-3x"></i>
487
					</a>	
488
						<br />
@@ 491-498 (lines=8) @@
488
						<br />
489
					<?php echo $post["vote_count"];?><br />
490
			<?php
491
				if($isDetailedView)
492
				{?>
493
					<a href="index.php?vote=down&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>">
494
		  <?php }
495
				else
496
				{?>
497
					<a href="index.php?vote=down&postID=<?php echo $post['post_id'];?>">
498
		  <?php } ?>
499
						<i class="fa fa-angle-down fa-3x"></i>
500
					</a>
501
		</aside>