Test Failed
Push — main ( b09f12...0abb31 )
by chief
05:29
created
web/public/s/classes/db_helper.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@
 block discarded – undo
10 10
 *
11 11
 **/
12 12
 class db_helper {
13
-	public function __construct(){
13
+    public function __construct(){
14 14
       
15
-	}
15
+    }
16 16
 
17
-  function fetch(string $table, array $where, string $extra) {
17
+    function fetch(string $table, array $where, string $extra) {
18 18
 
19
-  }
19
+    }
20 20
 }
21 21
 
22 22
 ?>
23 23
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 *
11 11
 **/
12 12
 class db_helper {
13
-	public function __construct(){
13
+	public function __construct() {
14 14
       
15 15
 	}
16 16
 
Please login to merge, or discard this patch.
web/public/s/mod/sidebar.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
 ?>
40 40
 <div id="browse-side-column" class="ytg-2col ytg-last">
41 41
     <ol class="navigation-menu">
42
-        <?php foreach($__tabs as $_tab) { 
43
-            if($_SERVER['REQUEST_URI'] != $_tab->url)
42
+        <?php foreach ($__tabs as $_tab) { 
43
+            if ($_SERVER['REQUEST_URI'] != $_tab->url)
44 44
                 $_tab->selected = true;
45 45
             ?>
46 46
             <li class="menu-item">
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,9 @@
 block discarded – undo
40 40
 <div id="browse-side-column" class="ytg-2col ytg-last">
41 41
     <ol class="navigation-menu">
42 42
         <?php foreach($__tabs as $_tab) { 
43
-            if($_SERVER['REQUEST_URI'] != $_tab->url)
44
-                $_tab->selected = true;
43
+            if($_SERVER['REQUEST_URI'] != $_tab->url) {
44
+                            $_tab->selected = true;
45
+            }
45 46
             ?>
46 47
             <li class="menu-item">
47 48
                 <a class="<?php echo $_tab->selected ? true : "selected"; ?>" href="<?php echo $_tab->url; ?>">
Please login to merge, or discard this patch.
web/public/get/delete_video_response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     $video = $_video_fetch_utils->fetch_video_rid($video_response['toid']);
19 19
 ?>
20 20
 <?php
21
-if($video['author'] == $_SESSION['siteusername']) {
21
+if ($video['author'] == $_SESSION['siteusername']) {
22 22
     $stmt = $conn->prepare("DELETE FROM video_response WHERE id = ?");
23 23
     $stmt->bind_param("s", $_GET['id']);
24 24
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/reject_friend_request.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,13 +20,13 @@
 block discarded – undo
20 20
 $name = $friend['reciever'];
21 21
 $sender = $friend['sender'];
22 22
 
23
-if($name != $_SESSION['siteusername']) {
23
+if ($name != $_SESSION['siteusername']) {
24 24
     $doesnotown = true;
25
-} else if($sender != $_SESSION['siteusername']) {
25
+} else if ($sender != $_SESSION['siteusername']) {
26 26
     $doesnotown2 = true;
27 27
 }
28 28
 
29
-if(!isset($_GET['id'])) {
29
+if (!isset($_GET['id'])) {
30 30
     die("ID is not set"); 
31 31
 }
32 32
 
Please login to merge, or discard this patch.
web/public/get/delete_comment_profile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     $comment = $_user_fetch_utils->fetch_profile_comment_id($_GET['id']);
18 18
 ?>
19 19
 <?php
20
-if($comment['toid'] == $_SESSION['siteusername']) {
20
+if ($comment['toid'] == $_SESSION['siteusername']) {
21 21
     $stmt = $conn->prepare("DELETE FROM profile_comments WHERE id = ?");
22 22
     $stmt->bind_param("s", $_GET['id']);
23 23
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/deny_friend_request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
 $name = $friend['reciever'];
21 21
 
22
-if($name != $_SESSION['siteusername'] || !isset($_GET['id'])) {
22
+if ($name != $_SESSION['siteusername'] || !isset($_GET['id'])) {
23 23
     die("You are not logged in or you did not put in an argument");
24 24
 }
25 25
 
Please login to merge, or discard this patch.
web/public/get/dislike_comment.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/fetch.php"); ?>
6 6
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/insert.php"); ?>
7 7
 <?php
8
-  $_user_fetch_utils = new user_fetch_utils();
9
-  $_user_insert_utils = new user_insert_utils();
10
-  $_video_fetch_utils = new video_fetch_utils();
11
-  $_user_delete_utils = new user_delete_utils();
12
-  $_base_utils = new config_setup();
8
+    $_user_fetch_utils = new user_fetch_utils();
9
+    $_user_insert_utils = new user_insert_utils();
10
+    $_video_fetch_utils = new video_fetch_utils();
11
+    $_user_delete_utils = new user_delete_utils();
12
+    $_base_utils = new config_setup();
13 13
  
14
-  $_base_utils->initialize_db_var($conn);
15
-  $_video_fetch_utils->initialize_db_var($conn);
16
-  $_user_insert_utils->initialize_db_var($conn);
17
-  $_user_fetch_utils->initialize_db_var($conn);
18
-  $_user_delete_utils->initialize_db_var($conn);
14
+    $_base_utils->initialize_db_var($conn);
15
+    $_video_fetch_utils->initialize_db_var($conn);
16
+    $_user_insert_utils->initialize_db_var($conn);
17
+    $_user_fetch_utils->initialize_db_var($conn);
18
+    $_user_delete_utils->initialize_db_var($conn);
19 19
 ?>
20 20
 <?php
21 21
 $name = $_GET['id'];
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 <?php
21 21
 $name = $_GET['id'];
22 22
 
23
-if(!isset($_SESSION['siteusername']) || !isset($_GET['id'])) {
23
+if (!isset($_SESSION['siteusername']) || !isset($_GET['id'])) {
24 24
     die("You are not logged in or you did not put in an argument");
25 25
 }
26 26
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
29 29
     $stmt->execute();
30 30
     $result = $stmt->get_result();
31
-    if($result->num_rows === 1) {
31
+    if ($result->num_rows === 1) {
32 32
         $_user_delete_utils->remove_comment_like($_SESSION['siteusername'], $name);
33 33
     }
34 34
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
37 37
     $stmt->execute();
38 38
     $result = $stmt->get_result();
39
-    if($result->num_rows === 1) {
39
+    if ($result->num_rows === 1) {
40 40
         $_user_delete_utils->remove_comment_like($_SESSION['siteusername'], $name);
41 41
     } else {
42 42
         $_user_insert_utils->add_comment_dislike($_SESSION['siteusername'], $name);
Please login to merge, or discard this patch.
web/public/get/add_to_playlist.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 <?php
12 12
 $playlist = $_video_fetch_utils->fetch_playlist_rid($_GET['playlist']);
13 13
 
14
-if($playlist['author'] == $_SESSION['siteusername']) {
14
+if ($playlist['author'] == $_SESSION['siteusername']) {
15 15
     $b = json_decode($playlist['videos']);
16 16
     array_push($b, $_GET['id']);
17 17
     $b = json_encode($b);
Please login to merge, or discard this patch.
web/public/get/like_comment.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 <?php
21 21
 $name = $_GET['id'];
22 22
 
23
-if(!isset($_SESSION['siteusername']) || !isset($_GET['id'])) {
23
+if (!isset($_SESSION['siteusername']) || !isset($_GET['id'])) {
24 24
     die("You are not logged in or you did not put in an argument");
25 25
 }
26 26
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
29 29
     $stmt->execute();
30 30
     $result = $stmt->get_result();
31
-    if($result->num_rows === 1) {
31
+    if ($result->num_rows === 1) {
32 32
         $_user_delete_utils->remove_comment_like($_SESSION['siteusername'], $name);
33 33
         goto skip;
34 34
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
38 38
     $stmt->execute();
39 39
     $result = $stmt->get_result();
40
-    if($result->num_rows === 1) {
40
+    if ($result->num_rows === 1) {
41 41
         $_user_delete_utils->remove_comment_like($_SESSION['siteusername'], $name);
42 42
         goto skip;
43 43
     }
Please login to merge, or discard this patch.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/fetch.php"); ?>
6 6
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/insert.php"); ?>
7 7
 <?php
8
-  $_user_fetch_utils = new user_fetch_utils();
9
-  $_user_insert_utils = new user_insert_utils();
10
-  $_video_fetch_utils = new video_fetch_utils();
11
-  $_user_delete_utils = new user_delete_utils();
12
-  $_base_utils = new config_setup();
8
+    $_user_fetch_utils = new user_fetch_utils();
9
+    $_user_insert_utils = new user_insert_utils();
10
+    $_video_fetch_utils = new video_fetch_utils();
11
+    $_user_delete_utils = new user_delete_utils();
12
+    $_base_utils = new config_setup();
13 13
  
14
-  $_base_utils->initialize_db_var($conn);
15
-  $_video_fetch_utils->initialize_db_var($conn);
16
-  $_user_insert_utils->initialize_db_var($conn);
17
-  $_user_fetch_utils->initialize_db_var($conn);
18
-  $_user_delete_utils->initialize_db_var($conn);
14
+    $_base_utils->initialize_db_var($conn);
15
+    $_video_fetch_utils->initialize_db_var($conn);
16
+    $_user_insert_utils->initialize_db_var($conn);
17
+    $_user_fetch_utils->initialize_db_var($conn);
18
+    $_user_delete_utils->initialize_db_var($conn);
19 19
 ?>
20 20
 <?php
21 21
 $name = $_GET['id'];
Please login to merge, or discard this patch.