Code Duplication    Length = 8-8 lines in 2 locations

php/jodel-web.php 2 locations

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