Test Failed
Push — main ( 1c70d7...b09f12 )
by chief
02:52
created
web/public/get/delete_video.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 if($video['author'] == $_SESSION['siteusername']) {
17 17
     $stmt = $__db->prepare("DELETE FROM videos WHERE rid=:rid AND author=:author");
18 18
     $stmt->execute(array(
19
-      ':author' => $video['author'],
20
-      ':rid' => $video['rid'],
19
+        ':author' => $video['author'],
20
+        ':rid' => $video['rid'],
21 21
     ));
22 22
 }
23 23
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 <?php $video = $__video_h->fetch_video_rid($_GET['v']); ?>
14 14
 <?php
15 15
 
16
-if($video['author'] == $_SESSION['siteusername']) {
16
+if ($video['author'] == $_SESSION['siteusername']) {
17 17
     $stmt = $__db->prepare("DELETE FROM videos WHERE rid=:rid AND author=:author");
18 18
     $stmt->execute(array(
19 19
       ':author' => $video['author'],
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.
web/public/get/delete_group.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
 ?>
18 18
 <?php
19 19
 
20
-if($group['group_author'] == $_SESSION['siteusername']) {
20
+if ($group['group_author'] == $_SESSION['siteusername']) {
21 21
     $stmt = $conn->prepare("DELETE FROM user_groups 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/unfavorite.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 <?php
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
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
27 27
     $stmt->execute();
28 28
     $result = $stmt->get_result();
29
-    if($result->num_rows === 0) die('You already are not subscribed to this person!');
29
+    if ($result->num_rows === 0) die('You already are not subscribed to this person!');
30 30
 $stmt->close();
31 31
 
32 32
 $stmt = $conn->prepare("DELETE FROM favorite_video WHERE sender = ? AND reciever = ?");
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,10 @@
 block discarded – undo
26 26
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
27 27
     $stmt->execute();
28 28
     $result = $stmt->get_result();
29
-    if($result->num_rows === 0) die('You already are not subscribed to this person!');
30
-$stmt->close();
29
+    if($result->num_rows === 0) {
30
+        die('You already are not subscribed to this person!');
31
+    }
32
+    $stmt->close();
31 33
 
32 34
 $stmt = $conn->prepare("DELETE FROM favorite_video WHERE sender = ? AND reciever = ?");
33 35
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
Please login to merge, or discard this patch.
web/public/get/kick_from_group.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
     $group = $_video_fetch_utils->fetch_group_id($_GET['id']);
18 18
 ?>
19 19
 <?php
20
-if($group['group_author'] == $_SESSION['siteusername']) {
20
+if ($group['group_author'] == $_SESSION['siteusername']) {
21 21
     $stmt = $conn->prepare("DELETE FROM group_members WHERE togroup = ? AND username = ?");
22 22
     $stmt->bind_param("ss", $_GET['id'], $_GET['user']);
23 23
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/like.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 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
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
27 27
     $stmt->execute();
28 28
     $result = $stmt->get_result();
29
-    if($result->num_rows === 1) {
29
+    if ($result->num_rows === 1) {
30 30
         $_user_insert_utils->remove_like_video($_SESSION['siteusername'], $name);
31 31
         goto skip;
32 32
     }
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
36 36
     $stmt->execute();
37 37
     $result = $stmt->get_result();
38
-    if($result->num_rows === 1) {
38
+    if ($result->num_rows === 1) {
39 39
         $_user_insert_utils->remove_like_video($_SESSION['siteusername'], $name);
40 40
         goto skip;
41 41
     }
Please login to merge, or discard this patch.
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.
web/public/get/remove_channel_banner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     $_user_update_utils->initialize_db_var($conn);
22 22
 ?>
23 23
 <?php
24
-if(isset($_SESSION['siteusername'])) {
24
+if (isset($_SESSION['siteusername'])) {
25 25
     $_user_update_utils->update_user_banner(
26 26
         "", 
27 27
         $_SESSION['siteusername']
Please login to merge, or discard this patch.
web/public/get/delete_playlist.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
 ?>
18 18
 <?php
19 19
 
20
-if($playlist['author'] == $_SESSION['siteusername']) {
20
+if ($playlist['author'] == $_SESSION['siteusername']) {
21 21
     $stmt = $conn->prepare("DELETE FROM playlists WHERE rid = ?");
22 22
     $stmt->bind_param("s", $_GET['id']);
23 23
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/delete_quicklist_video.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
     $video = $_video_fetch_utils->get_quicklist_video($_GET['id']);
18 18
 ?>
19 19
 <?php
20
-if($video['author'] == $_SESSION['siteusername']) {
20
+if ($video['author'] == $_SESSION['siteusername']) {
21 21
     $stmt = $conn->prepare("DELETE FROM quicklist_videos WHERE id = ?");
22 22
     $stmt->bind_param("s", $_GET['id']);
23 23
     $stmt->execute();
Please login to merge, or discard this patch.