Code Duplication    Length = 8-8 lines in 2 locations

php/jodel-web.php 2 locations

@@ 718-725 (lines=8) @@
715
		</content>
716
		<aside>
717
			<?php
718
				if($isDetailedView)
719
				{?>
720
					<a href="index.php?vote=up&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>" rel="nofollow">
721
		  <?php }
722
				else
723
				{?>
724
					<a href="index.php?vote=up&postID=<?php echo $post['post_id'];?>" rel="nofollow">
725
		  <?php } ?>
726
						<i class="fa fa-angle-up fa-3x"></i>
727
					</a>	
728
						<br />
@@ 731-738 (lines=8) @@
728
						<br />
729
					<?php echo $post["vote_count"];?><br />
730
			<?php
731
				if($isDetailedView)
732
				{?>
733
					<a href="index.php?vote=down&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>" rel="nofollow">
734
		  <?php }
735
				else
736
				{?>
737
					<a href="index.php?vote=down&postID=<?php echo $post['post_id'];?>" rel="nofollow">
738
		  <?php } ?>
739
						<i class="fa fa-angle-down fa-3x"></i>
740
					</a>
741
		</aside>