Test Failed
Push — main ( b1c027...83cec3 )
by chief
03:12
created
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/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.
web/public/get/add_friend.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@
 block discarded – undo
10 10
 <?php $__time_h = new time_helper(); ?>
11 11
 <?php
12 12
 
13
-if($_SESSION['siteusername'] == $_GET['sending'])
13
+if ($_SESSION['siteusername'] == $_GET['sending'])
14 14
     die("You can't friend yourself!");
15 15
 
16 16
 $stmt = $conn->prepare("SELECT * FROM friends WHERE sender = ? AND reciever = ?");
17 17
 $stmt->bind_param("ss", $_SESSION['siteusername'], $_GET['sending']);
18 18
     $stmt->execute();
19 19
     $result = $stmt->get_result();
20
-    if($result->num_rows === 1) die('You already sent a friend request to this person');
20
+    if ($result->num_rows === 1) die('You already sent a friend request to this person');
21 21
 $stmt->close();
22 22
 
23 23
 $stmt = $conn->prepare("INSERT INTO friends (sender, reciever, status) VALUES (?, ?, 'u')");
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,15 +10,18 @@
 block discarded – undo
10 10
 <?php $__time_h = new time_helper(); ?>
11 11
 <?php
12 12
 
13
-if($_SESSION['siteusername'] == $_GET['sending'])
13
+if($_SESSION['siteusername'] == $_GET['sending']) {
14 14
     die("You can't friend yourself!");
15
+}
15 16
 
16 17
 $stmt = $conn->prepare("SELECT * FROM friends WHERE sender = ? AND reciever = ?");
17 18
 $stmt->bind_param("ss", $_SESSION['siteusername'], $_GET['sending']);
18 19
     $stmt->execute();
19 20
     $result = $stmt->get_result();
20
-    if($result->num_rows === 1) die('You already sent a friend request to this person');
21
-$stmt->close();
21
+    if($result->num_rows === 1) {
22
+        die('You already sent a friend request to this person');
23
+    }
24
+    $stmt->close();
22 25
 
23 26
 $stmt = $conn->prepare("INSERT INTO friends (sender, reciever, status) VALUES (?, ?, 'u')");
24 27
 $stmt->bind_param("ss", $_SESSION['siteusername'], $_GET['sending']);
Please login to merge, or discard this patch.
web/public/get/delete_reply.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
     $video = $_video_fetch_utils->fetch_video_rid($to['toid']);
20 20
 ?>
21 21
 <?php
22
-if($video['author'] == $_SESSION['siteusername']) {
22
+if ($video['author'] == $_SESSION['siteusername']) {
23 23
     $stmt = $conn->prepare("DELETE FROM comment_reply WHERE id = ?");
24 24
     $stmt->bind_param("s", $_GET['id']);
25 25
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/delete_comment.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($comment['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 comments 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/toggle_comment.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
 ?>
21 21
 <?php
22 22
 
23
-if($video['author'] == $_SESSION['siteusername']) {
24
-    if($video['commenting'] == "a") {
23
+if ($video['author'] == $_SESSION['siteusername']) {
24
+    if ($video['commenting'] == "a") {
25 25
         $_video_update_utils->update_video_commenting($_GET['id'], "d");
26 26
     } else {
27 27
         $_video_update_utils->update_video_commenting($_GET['id'], "a");
Please login to merge, or discard this patch.
web/public/get/remove_profile_pic.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 $__db_h = new db_helper(); ?>
12 12
 <?php $__time_h = new time_helper(); ?>
13 13
 <?php
14
-if(isset($_SESSION['siteusername'])) {
14
+if (isset($_SESSION['siteusername'])) {
15 15
     $__user_u->update_row(
16 16
         $_SESSION['siteusername'], 
17 17
         "pfp", 
Please login to merge, or discard this patch.
web/public/get/star.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,15 +4,15 @@
 block discarded – undo
4 4
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/fetch.php"); ?>
5 5
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/insert.php"); ?>
6 6
 <?php
7
-  $_user_fetch_utils = new user_fetch_utils();
8
-  $_user_insert_utils = new user_insert_utils();
9
-  $_video_fetch_utils = new video_fetch_utils();
10
-  $_base_utils = new config_setup();
7
+    $_user_fetch_utils = new user_fetch_utils();
8
+    $_user_insert_utils = new user_insert_utils();
9
+    $_video_fetch_utils = new video_fetch_utils();
10
+    $_base_utils = new config_setup();
11 11
  
12
-  $_base_utils->initialize_db_var($conn);
13
-  $_video_fetch_utils->initialize_db_var($conn);
14
-  $_user_insert_utils->initialize_db_var($conn);
15
-  $_user_fetch_utils->initialize_db_var($conn);
12
+    $_base_utils->initialize_db_var($conn);
13
+    $_video_fetch_utils->initialize_db_var($conn);
14
+    $_user_insert_utils->initialize_db_var($conn);
15
+    $_user_fetch_utils->initialize_db_var($conn);
16 16
 ?>
17 17
 <?php
18 18
 session_start();
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,20 +18,20 @@
 block discarded – undo
18 18
 session_start();
19 19
 $name = $_GET['v'];
20 20
 
21
-if(!isset($_SESSION['siteusername']) || !isset($_GET['v'])) {
21
+if (!isset($_SESSION['siteusername']) || !isset($_GET['v'])) {
22 22
     die("You are not logged in or you did not put in an argument");
23 23
 }
24 24
 
25
-if(!is_int((int)$_GET['rating'])) {
25
+if (!is_int((int) $_GET['rating'])) {
26 26
     //header('Location: ' . $_SERVER['HTTP_REFERER']);
27 27
 }
28 28
 
29
-if((1 <= (int)$_GET['rating']) && ((int)$_GET['rating']) <= 5) {
29
+if ((1 <= (int) $_GET['rating']) && ((int) $_GET['rating']) <= 5) {
30 30
     $stmt = $conn->prepare("SELECT * FROM stars WHERE sender = ? AND reciever = ?");
31 31
     $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
32 32
         $stmt->execute();
33 33
         $result = $stmt->get_result();
34
-        if($result->num_rows === 1) {
34
+        if ($result->num_rows === 1) {
35 35
             $_user_insert_utils->remove_star_video($_SESSION['siteusername'], $name);
36 36
             goto skip;
37 37
         }
Please login to merge, or discard this patch.