Code Duplication    Length = 8-8 lines in 2 locations

php/jodel-web.php 2 locations

@@ 727-734 (lines=8) @@
724
		</content>
725
		<aside>
726
			<?php
727
				if($isDetailedView)
728
				{?>
729
					<a href="index.php?vote=up&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>" rel="nofollow">
730
		  <?php }
731
				else
732
				{?>
733
					<a href="index.php?vote=up&postID=<?php echo $post['post_id'];?>" rel="nofollow">
734
		  <?php } ?>
735
						<i class="fa fa-angle-up fa-3x"></i>
736
					</a>	
737
						<br />
@@ 740-747 (lines=8) @@
737
						<br />
738
					<?php echo $post["vote_count"];?><br />
739
			<?php
740
				if($isDetailedView)
741
				{?>
742
					<a href="index.php?vote=down&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>" rel="nofollow">
743
		  <?php }
744
				else
745
				{?>
746
					<a href="index.php?vote=down&postID=<?php echo $post['post_id'];?>" rel="nofollow">
747
		  <?php } ?>
748
						<i class="fa fa-angle-down fa-3x"></i>
749
					</a>
750
		</aside>