Test Failed
Pull Request — main (#21)
by
unknown
02:57
created
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/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_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.
web/public/get/join_group.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
 ?>
19 19
 <?php
20 20
 
21
-if(!$_user_fetch_utils->if_joined_group($_SESSION['siteusername'], $_GET['id'])) {
21
+if (!$_user_fetch_utils->if_joined_group($_SESSION['siteusername'], $_GET['id'])) {
22 22
     $stmt = $conn->prepare("INSERT INTO group_members (togroup, username) VALUES (?, ?)");
23 23
     $stmt->bind_param("ss", $_GET['id'], $_SESSION['siteusername']);
24 24
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/report.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/base.php"); ?>
3 3
 <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/fetch.php"); ?>
4 4
 <?php
5
-  $_user_fetch_utils = new user_fetch_utils();
6
-  $_video_fetch_utils = new video_fetch_utils();
7
-  $_base_utils = new config_setup();
5
+    $_user_fetch_utils = new user_fetch_utils();
6
+    $_video_fetch_utils = new video_fetch_utils();
7
+    $_base_utils = new config_setup();
8 8
  
9
-  $_base_utils->initialize_db_var($conn);
10
-  $_video_fetch_utils->initialize_db_var($conn);
11
-  $_user_fetch_utils->initialize_db_var($conn);
9
+    $_base_utils->initialize_db_var($conn);
10
+    $_video_fetch_utils->initialize_db_var($conn);
11
+    $_user_fetch_utils->initialize_db_var($conn);
12 12
 
13
-  $_video = $_video_fetch_utils->fetch_video_rid($_GET['v']);
13
+    $_video = $_video_fetch_utils->fetch_video_rid($_GET['v']);
14 14
 ?>
15 15
 <?php
16 16
 //=======================================================================================================
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -43,21 +43,21 @@
 block discarded – undo
43 43
 
44 44
     // File upload
45 45
     // "file" => "",
46
-], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE );
46
+], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
47 47
 
48 48
 
49
-$ch = curl_init( $webhookurl );
50
-curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-type: application/json'));
51
-curl_setopt( $ch, CURLOPT_POST, 1);
52
-curl_setopt( $ch, CURLOPT_POSTFIELDS, $json_data);
53
-curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
54
-curl_setopt( $ch, CURLOPT_HEADER, 0);
55
-curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
49
+$ch = curl_init($webhookurl);
50
+curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json'));
51
+curl_setopt($ch, CURLOPT_POST, 1);
52
+curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data);
53
+curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
54
+curl_setopt($ch, CURLOPT_HEADER, 0);
55
+curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
56 56
 
57
-$response = curl_exec( $ch );
57
+$response = curl_exec($ch);
58 58
 // If you need to debug, or find out why you can't send message uncomment line below, and execute script.
59 59
 // echo $response;
60
-curl_close( $ch );
60
+curl_close($ch);
61 61
 
62 62
 skip:
63 63
 header('Location: ' . $_SERVER['HTTP_REFERER']);
Please login to merge, or discard this patch.
web/public/get/remove_watch_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_video_banner(
26 26
         "", 
27 27
         $_SESSION['siteusername']
Please login to merge, or discard this patch.
web/public/get/unjoin_group.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
 ?>
19 19
 <?php
20 20
 
21
-if($_user_fetch_utils->if_joined_group($_SESSION['siteusername'], $_GET['id'])) {
21
+if ($_user_fetch_utils->if_joined_group($_SESSION['siteusername'], $_GET['id'])) {
22 22
     $stmt = $conn->prepare("DELETE FROM group_members WHERE togroup = ? AND username = ?");
23 23
     $stmt->bind_param("ss", $_GET['id'], $_SESSION['siteusername']);
24 24
     $stmt->execute();
Please login to merge, or discard this patch.
web/public/get/unblock.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 <?php
18 18
 $name = $_GET['user'];
19 19
 
20
-if(!isset($_SESSION['siteusername']) || !isset($_GET['user'])) {
20
+if (!isset($_SESSION['siteusername']) || !isset($_GET['user'])) {
21 21
     die("You are not logged in or you did not put in an argument");
22 22
 }
23 23
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
26 26
     $stmt->execute();
27 27
     $result = $stmt->get_result();
28
-    if($result->num_rows === 0) die('You haven\'t blocked this person!');
28
+    if ($result->num_rows === 0) die('You haven\'t blocked this person!');
29 29
 $stmt->close();
30 30
 
31 31
 $stmt = $conn->prepare("DELETE FROM block 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
@@ -25,8 +25,10 @@
 block discarded – undo
25 25
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
26 26
     $stmt->execute();
27 27
     $result = $stmt->get_result();
28
-    if($result->num_rows === 0) die('You haven\'t blocked this person!');
29
-$stmt->close();
28
+    if($result->num_rows === 0) {
29
+        die('You haven\'t blocked this person!');
30
+    }
31
+    $stmt->close();
30 32
 
31 33
 $stmt = $conn->prepare("DELETE FROM block WHERE sender = ? AND reciever = ?");
32 34
 $stmt->bind_param("ss", $_SESSION['siteusername'], $name);
Please login to merge, or discard this patch.
web/public/get/add_video_response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 <?php $__time_h = new time_helper(); ?>
11 11
 <?php
12 12
 
13
-if($_user_fetch_utils->video_responded($_GET['reciever'], $_GET['sending']) == 0) {
13
+if ($_user_fetch_utils->video_responded($_GET['reciever'], $_GET['sending']) == 0) {
14 14
     $stmt = $conn->prepare("INSERT INTO video_response (toid, author, video) VALUES (?, ?, ?)");
15 15
     $stmt->bind_param("sss", $_GET['reciever'], $_SESSION['siteusername'], $_GET['sending']);
16 16
     $stmt->execute();
Please login to merge, or discard this patch.