Completed
Push — master ( e59735...5fd26f )
by Anthony
02:10
created
app/controller/Comment.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
31 31
 		
32 32
 		//-------------------------- GETTER ----------------------------------------------------------------------------//
33 33
 		public function getRequiredConnection() {
34
-		    return $this->required_connection;
34
+			return $this->required_connection;
35 35
 		}
36 36
 		public function getCheckComment() {
37
-		    return $this->check_comment;
37
+			return $this->check_comment;
38 38
 		}
39 39
 		
40 40
 		/**
Please login to merge, or discard this patch.
app/views/write-comment.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,11 @@
 block discarded – undo
8 8
 		
9 9
 		<input type="hidden" name="return_page" value="http://<?=$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI]?>">
10 10
 	</form>
11
-<?php else: ?>
11
+<?php else {
12
+	: ?>
12 13
 	<div class="row">
13 14
 		<p>You must be connected to publish a comment</p>
14 15
 	</div>
15
-<?php endif;?>
16 16
\ No newline at end of file
17
+<?php endif;
18
+}
19
+?>
17 20
\ No newline at end of file
Please login to merge, or discard this patch.