Test Failed
Push — main ( 1c70d7...b09f12 )
by chief
02:52
created
web/public/d/login.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 <?php $__db_h = new db_helper(); ?>
10 10
 <?php $__time_h = new time_helper(); ?>
11 11
 <?php
12
-    if($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['password'] && $_POST['username']) {
12
+    if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['password'] && $_POST['username']) {
13 13
         $request = (object) [
14 14
             "username" => $_POST['username'],
15 15
             "password" => $_POST['password'],
@@ -26,19 +26,19 @@  discard block
 block discarded – undo
26 26
         $stmt->bindParam(":username", $request->username);
27 27
         $stmt->execute();
28 28
 
29
-        if(!$stmt->rowCount()){ 
29
+        if (!$stmt->rowCount()) { 
30 30
             { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } }
31 31
 
32 32
         $row = $stmt->fetch(PDO::FETCH_ASSOC);
33
-        if(!isset($row['password'])) 
33
+        if (!isset($row['password'])) 
34 34
             { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } 
35 35
         else 
36 36
             { $request->returned_password = $row['password']; }
37 37
 
38
-        if(!password_verify($request->password, $request->returned_password)) 
38
+        if (!password_verify($request->password, $request->returned_password)) 
39 39
             { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; }
40 40
         
41
-        if($request->error->status == "OK") {
41
+        if ($request->error->status == "OK") {
42 42
             $_SESSION['siteusername'] = $request->username;
43 43
             header("Location: /");
44 44
         } else {
Please login to merge, or discard this patch.
web/public/d/upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         'target_upload_name' => md5_file($_FILES["video_file"]["tmp_name"]) . ".mp4",
37 37
     ];
38 38
 
39
-    if(move_uploaded_file(
39
+    if (move_uploaded_file(
40 40
         $_FILES['video_file']['tmp_name'], 
41 41
         "dynamic/temp/" . $video_properties->video_rid . $video_validation->video_file_type
42 42
     )) {
Please login to merge, or discard this patch.
web/public/d/edit_video.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 <?php $__time_h = new time_helper(); ?>
15 15
 <?php
16 16
     $_video = $__video_h->fetch_video_rid($_GET['v']);
17
-    if($_video['author'] != @$_SESSION['siteusername']) {
17
+    if ($_video['author'] != @$_SESSION['siteusername']) {
18 18
         die();
19 19
     }
20 20
 
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
     $__video_u->update_row($_GET['v'], "thumbnail", $request->thumbnail);
40 40
     $__video_u->update_row($_GET['v'], "category", $request->category);
41 41
 
42
-    if($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['thumbnail']) {
43
-        if(!empty($_FILES["thumbnail"]["name"])) {
42
+    if ($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['thumbnail']) {
43
+        if (!empty($_FILES["thumbnail"]["name"])) {
44 44
             $target_dir = "dynamic/thumbs/";
45 45
             $imageFileType = strtolower(pathinfo($_FILES["thumbnail"]["name"], PATHINFO_EXTENSION));
46 46
             $target_name = md5_file($_FILES["thumbnail"]["tmp_name"]) . "." . $imageFileType;
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
             $uploadOk = true;
51 51
             $movedFile = false;
52 52
     
53
-            if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
54
-                && $imageFileType != "gif" ) {
53
+            if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
54
+                && $imageFileType != "gif") {
55 55
                 $fileerror = 'unsupported file type. must be jpg, png, jpeg, or gif';
56 56
                 $uploadOk = false;
57 57
                 goto skip;
Please login to merge, or discard this patch.
web/public/d/signup.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 <?php $__db_h = new db_helper(); ?>
10 10
 <?php $__time_h = new time_helper(); ?>
11 11
 <?php
12
-    if($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['password'] && $_POST['username']) {
12
+    if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['password'] && $_POST['username']) {
13 13
         $request = (object) [
14 14
             "username" => $_POST['username'],
15 15
             "password" => $_POST['password'],
@@ -23,25 +23,25 @@  discard block
 block discarded – undo
23 23
         ]; 
24 24
 
25 25
         if (!filter_var($request->email, FILTER_VALIDATE_EMAIL)) 
26
-            { $request->error->message = "Your email is invalid!"; $request->error->status = "";  }
27
-        if(strlen($request->username) > 21) 
26
+            { $request->error->message = "Your email is invalid!"; $request->error->status = ""; }
27
+        if (strlen($request->username) > 21) 
28 28
             { $request->error->message = "Your username must be shorter than 21 characters."; $request->error->status = ""; }
29
-        if(strlen($request->password) < 8) 
29
+        if (strlen($request->password) < 8) 
30 30
             { $request->error->message = "Your password must at least be 8 characters long."; $request->error->status = ""; }
31
-        if(!preg_match('/[A-Za-z].*[0-9]|[0-9].*[A-Za-z]/', $request->password)) 
31
+        if (!preg_match('/[A-Za-z].*[0-9]|[0-9].*[A-Za-z]/', $request->password)) 
32 32
             { $request->error->message = "Include numbers and letters in your password!"; $request->error->status = ""; }
33
-        if(!preg_match('/^\S+\w\S{1,}/', $request->username)) 
33
+        if (!preg_match('/^\S+\w\S{1,}/', $request->username)) 
34 34
             { $request->error->message = "Your username cannot contain any special characters!"; $request->error->status = ""; }
35
-        if(empty(trim($request->username))) 
35
+        if (empty(trim($request->username))) 
36 36
             { $request->error->message = "Your username cannot be empty!"; $request->error->status = ""; }
37 37
         
38 38
         $stmt = $__db->prepare("SELECT username FROM users WHERE username = :username");
39 39
         $stmt->bindParam(":username", $username);
40 40
         $stmt->execute();
41
-        if($stmt->rowCount()) 
41
+        if ($stmt->rowCount()) 
42 42
             { $request->error->message = "There's already a user with that same username!"; $request->error->status = ""; }
43 43
         
44
-        if($request->error->status == "OK") {
44
+        if ($request->error->status == "OK") {
45 45
             $stmt = $__db->prepare("INSERT INTO users (username, email, password) VALUES (:username, :email, :password)");
46 46
             $stmt->bindParam(":username", $request->username);
47 47
             $stmt->bindParam(":email", $request->email);
Please login to merge, or discard this patch.
web/public/d/channel_update.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@  discard block
 block discarded – undo
17 17
         return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars.
18 18
     }
19 19
 
20
-        if(isset($_POST['layout'])) { 
20
+        if (isset($_POST['layout'])) { 
21 21
             $stmt = $__db->prepare("UPDATE users SET layout = :layout WHERE username = :username");
22 22
             $stmt->bindParam(":layout", $_POST['layout']);
23 23
             $stmt->bindParam(":username", $_SESSION['siteusername']);
24 24
             $stmt->execute();
25 25
         }
26 26
 
27
-        if(isset($_POST['left'])) {
27
+        if (isset($_POST['left'])) {
28 28
             $clean = $_POST['left'];
29 29
             $stmt = $__db->prepare("UPDATE users SET 2009_user_left = :clean WHERE username = :username");
30 30
             $stmt->bindParam(":clean", $clean);
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             $stmt->execute();
33 33
         }
34 34
 
35
-        if(isset($_POST['right'])) {
35
+        if (isset($_POST['right'])) {
36 36
             $clean = $_POST['right'];
37 37
             $stmt = $__db->prepare("UPDATE users SET 2009_user_right = :clean WHERE username = :username");
38 38
             $stmt->bindParam(":clean", $clean);
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
         }
42 42
 
43 43
 
44
-        if($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['pfpset']) {
45
-            if(!empty($_FILES["pfpset"]["name"])) {
44
+        if ($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['pfpset']) {
45
+            if (!empty($_FILES["pfpset"]["name"])) {
46 46
                 $target_dir = "dynamic/pfp/";
47 47
                 $imageFileType = strtolower(pathinfo($_FILES["pfpset"]["name"], PATHINFO_EXTENSION));
48 48
                 $target_name = md5_file($_FILES["pfpset"]["tmp_name"]) . "." . $imageFileType;
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
                 $uploadOk = true;
53 53
                 $movedFile = false;
54 54
         
55
-                if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
56
-                    && $imageFileType != "gif" ) {
55
+                if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
56
+                    && $imageFileType != "gif") {
57 57
                     $fileerror = 'unsupported file type. must be jpg, png, jpeg, or gif';
58 58
                     $uploadOk = false;
59 59
                     goto skip;
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
                     }
77 77
                 }
78 78
             }
79
-        } else if($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['backgroundbgset']) {
80
-            if(!empty($_FILES["backgroundbgset"]["name"])) {
79
+        } else if ($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['backgroundbgset']) {
80
+            if (!empty($_FILES["backgroundbgset"]["name"])) {
81 81
                 $target_dir = "dynamic/banners/";
82 82
                 $imageFileType = strtolower(pathinfo($_FILES["backgroundbgset"]["name"], PATHINFO_EXTENSION));
83 83
                 $target_name = md5_file($_FILES["backgroundbgset"]["tmp_name"]) . "." . $imageFileType;
@@ -87,14 +87,14 @@  discard block
 block discarded – undo
87 87
                 $uploadOk = true;
88 88
                 $movedFile = false;
89 89
     
90
-                if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
91
-                    && $imageFileType != "gif" ) {
90
+                if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
91
+                    && $imageFileType != "gif") {
92 92
                     $fileerror = 'unsupported file type. must be jpg, png, jpeg, or gif';
93 93
                     $uploadOk = false;
94 94
                     goto skip;
95 95
                 }
96 96
     
97
-                if($uploadOk) { 
97
+                if ($uploadOk) { 
98 98
                     if (file_exists($target_file)) {
99 99
                         $movedFile = true;
100 100
                     } else {
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
                     }
111 111
                 }
112 112
             }
113
-        } else if($_SERVER['REQUEST_METHOD'] == 'POST' && @$_POST['bannerset']) {
114
-            if(!empty($_FILES["file"]["name"])) {
113
+        } else if ($_SERVER['REQUEST_METHOD'] == 'POST' && @$_POST['bannerset']) {
114
+            if (!empty($_FILES["file"]["name"])) {
115 115
                 $target_dir = "dynamic/banners/";
116 116
                 $imageFileType = strtolower(pathinfo($_FILES["file"]["name"], PATHINFO_EXTENSION));
117 117
                 $target_name = md5_file($_FILES["file"]["tmp_name"]) . "." . $imageFileType;
@@ -121,14 +121,14 @@  discard block
 block discarded – undo
121 121
                 $uploadOk = true;
122 122
                 $movedFile = false;
123 123
     
124
-                if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
125
-                    && $imageFileType != "gif" ) {
124
+                if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
125
+                    && $imageFileType != "gif") {
126 126
                     $fileerror = 'unsupported file type. must be jpg, png, jpeg, or gif';
127 127
                     $uploadOk = false;
128 128
                     goto skip;
129 129
                 }
130 130
     
131
-                if($uploadOk) { 
131
+                if ($uploadOk) { 
132 132
                     if (file_exists($target_file)) {
133 133
                         $movedFile = true;
134 134
                     } else {
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
                     }
145 145
                 } 
146 146
             }
147
-        } else if($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['videopagebanner']) {
148
-            if(!empty($_FILES["videopagebanner"]["name"])) {
147
+        } else if ($_SERVER['REQUEST_METHOD'] == 'POST' && @$_FILES['videopagebanner']) {
148
+            if (!empty($_FILES["videopagebanner"]["name"])) {
149 149
                 $target_dir = "dynamic/subscribe/";
150 150
                 $imageFileType = strtolower(pathinfo($_FILES["videopagebanner"]["name"], PATHINFO_EXTENSION));
151 151
                 $target_name = md5_file($_FILES["videopagebanner"]["tmp_name"]) . "." . $imageFileType;
@@ -155,14 +155,14 @@  discard block
 block discarded – undo
155 155
                 $uploadOk = true;
156 156
                 $movedFile = false;
157 157
     
158
-                if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
159
-                    && $imageFileType != "gif" ) {
158
+                if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
159
+                    && $imageFileType != "gif") {
160 160
                     $fileerror = 'unsupported file type. must be jpg, png, jpeg, or gif';
161 161
                     $uploadOk = false;
162 162
                     goto skip;
163 163
                 }
164 164
     
165
-                if($uploadOk) { 
165
+                if ($uploadOk) { 
166 166
                     if (file_exists($target_file)) {
167 167
                         $movedFile = true;
168 168
                     } else {
@@ -180,75 +180,75 @@  discard block
 block discarded – undo
180 180
             }
181 181
         }
182 182
 
183
-        if(!empty($_POST['bio'])) { 
183
+        if (!empty($_POST['bio'])) { 
184 184
             $__user_u->update_row($_SESSION['siteusername'], "bio", $_POST['bio']);
185 185
         }
186 186
 
187
-        if(!empty($_POST['videoid'])) { 
187
+        if (!empty($_POST['videoid'])) { 
188 188
             $__user_u->update_row($_SESSION['siteusername'], "featured_channels", $_POST['videoid']);
189 189
         } // duplicate?
190 190
     
191
-        if(!empty($_POST['css'])) {
191
+        if (!empty($_POST['css'])) {
192 192
             $__user_u->update_row($_SESSION['siteusername'], "css", $_POST['css']);
193 193
         }
194 194
 
195
-        if(!empty($_POST['videoid'])) {
195
+        if (!empty($_POST['videoid'])) {
196 196
             $__user_u->update_row($_SESSION['siteusername'], "featured", $_POST['videoid']);
197 197
         }
198 198
 
199
-        if(!empty($_POST['solidcolor'])) {
199
+        if (!empty($_POST['solidcolor'])) {
200 200
             $__user_u->update_row($_SESSION['siteusername'], "primary_color", $_POST['solidcolor']);
201 201
         }
202 202
 
203
-        if(!empty($_POST['transparency'])) {
203
+        if (!empty($_POST['transparency'])) {
204 204
             $__user_u->update_row($_SESSION['siteusername'], "transparency", $_POST['transparency']);
205 205
         }
206 206
 
207
-        if(!empty($_POST['genre'])) {
207
+        if (!empty($_POST['genre'])) {
208 208
             $__user_u->update_row($_SESSION['siteusername'], "genre", $_POST['genre']);
209 209
         }
210 210
 
211
-        if(!empty($_POST['bordercolor'])) {
211
+        if (!empty($_POST['bordercolor'])) {
212 212
             $__user_u->update_row($_SESSION['siteusername'], "border_color", $_POST['bordercolor']);
213 213
         }
214 214
 
215
-        if(!empty($_POST['country'])) {
215
+        if (!empty($_POST['country'])) {
216 216
             $__user_u->update_row($_SESSION['siteusername'], "country", $_POST['country']);
217 217
         } // duplicate?
218 218
 
219
-        if(!empty($_POST['header'])) {
219
+        if (!empty($_POST['header'])) {
220 220
             $__user_u->update_row($_SESSION['siteusername'], "custom_header", $_POST['header']);
221 221
         }
222 222
 
223
-        if(!empty($_POST['channels'])) {
223
+        if (!empty($_POST['channels'])) {
224 224
             $__user_u->update_row($_SESSION['siteusername'], "featured_channels", $_POST['channels']);
225 225
         } // duplicate?
226 226
 
227
-        if(!empty($_POST['customtext'])) {
227
+        if (!empty($_POST['customtext'])) {
228 228
             $__user_u->update_row($_SESSION['siteusername'], "custom_text", $_POST['customtext']);
229 229
         }
230 230
 
231
-        if(!empty($_POST['country'])) {
231
+        if (!empty($_POST['country'])) {
232 232
             $__user_u->update_row($_SESSION['siteusername'], "custom_text", $_POST['country']);
233 233
         } // duplicate?
234 234
 
235
-        if(!empty($_POST['website'])) {
235
+        if (!empty($_POST['website'])) {
236 236
             $__user_u->update_row($_SESSION['siteusername'], "website", $_POST['website']);
237 237
         }
238 238
     
239
-        if(!empty($_POST['channelboxcolor'])) {
239
+        if (!empty($_POST['channelboxcolor'])) {
240 240
             $__user_u->update_row($_SESSION['siteusername'], "secondary_color", $_POST['channelboxcolor']);
241 241
         }
242 242
 
243
-        if(!empty($_POST['backgroundcolor'])) {
243
+        if (!empty($_POST['backgroundcolor'])) {
244 244
             $__user_u->update_row($_SESSION['siteusername'], "third_color", $_POST['backgroundcolor']);
245 245
         }
246 246
 
247
-        if(!empty($_POST['textmaincolor'])) {
247
+        if (!empty($_POST['textmaincolor'])) {
248 248
             $__user_u->update_row($_SESSION['siteusername'], "primary_color_text", $_POST['textmaincolor']);
249 249
         }
250 250
 
251
-    if(!empty($_POST['bgoptionset'])) {
251
+    if (!empty($_POST['bgoptionset'])) {
252 252
         $bgoption = $_POST['bgoption'];
253 253
         $bgcolor = $_POST['solidcolor'];
254 254
         $default = "default.png";
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
         
258 258
         $__user_u->update_row($_SESSION['siteusername'], "2009_bgcolor", $bgcolor);
259 259
 
260
-        if($bgoption == "solid") {
260
+        if ($bgoption == "solid") {
261 261
             $__user_u->update_row($_SESSION['siteusername'], "2009_bg", $default);
262 262
         }
263 263
     }
Please login to merge, or discard this patch.
web/public/homepage.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 				<div id="content">
38 38
 					<div class="guide-layout-container enable-fancy-subscribe-button">
39 39
 						<div class="guide-container">
40
-						<?php if(!isset($_SESSION['siteusername'])) { ?>
40
+						<?php if (!isset($_SESSION['siteusername'])) { ?>
41 41
 									<div id="guide-builder-promo">
42 42
 								<h2>
43 43
 							Sign in to add channels to your homepage
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 							</div>
57 57
 							<div class="guide">
58 58
 							<?php 
59
-								if(isset($_SESSION['siteusername'])) {
59
+								if (isset($_SESSION['siteusername'])) {
60 60
 								?>
61 61
 								<div style="/*! margin-top: 0px; *//*! margin-left: 10px; *//*! margin-bottom: 13px; */height: 99px;" class="guide-section feed-header channel first"><img alt="" src="/dynamic/pfp/<?php echo $__user_h->fetch_pfp($_SESSION['siteusername']); ?>" style="height: 88px;position: relative;top: 4px;left: 4px;" class="feed-header-thumb channel-thumb" width="88px"><div id="links" style="/*! margin-left: 5px; */position: relative;left: 13px;top: 7px;"><div style="font-size: 11px;margin-bottom: 6px;" class="metadata">
62 62
 							<a href="/user/<?php echo htmlspecialchars($_SESSION['siteusername']); ?>" style="color: inherit;">My channel
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 											</span>
175 175
 											</a>
176 176
 										</li>
177
-										<?php foreach($__server->featured_channels as $channel) { ?>
177
+										<?php foreach ($__server->featured_channels as $channel) { ?>
178 178
 											<li class="guide-item-container ">
179 179
 												<a class="guide-item" data-external-id="<?php echo htmlspecialchars($channel); ?>" data-feed-name="<?php echo htmlspecialchars($channel); ?>" data-feed-type="user">
180 180
 												<span class="thumb">  <span class="video-thumb ux-thumb yt-thumb-square-28 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" data-thumb="/dynamic/pfp/<?php echo $__user_h->fetch_pfp($channel); ?>" width="28"><span class="vertical-align"></span></span></span></span>
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 								<?php
213 213
 									$stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4");
214 214
 									$stmt->execute();
215
-									while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
215
+									while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
216 216
 										$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
217 217
 										$video['duration'] = $__time_h->timestamp($video['duration']);
218 218
 										$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 								<?php
236 236
 									$stmt = $__db->prepare("SELECT * FROM videos WHERE featured = 'v' ORDER BY id DESC LIMIT 4");
237 237
 									$stmt->execute();
238
-									while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
238
+									while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
239 239
 										$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
240 240
 										$video['duration'] = $__time_h->timestamp($video['duration']);
241 241
 										$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 											<?php
269 269
 												$stmt = $__db->prepare("SELECT * FROM videos ORDER BY id DESC LIMIT 20");
270 270
 												$stmt->execute();
271
-												while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
271
+												while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
272 272
 													$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
273 273
 													$video['duration'] = $__time_h->timestamp($video['duration']);
274 274
 													$video['views'] = $__video_h->fetch_video_views($video['rid']);
Please login to merge, or discard this patch.
web/public/s/classes/config.inc.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@  discard block
 block discarded – undo
21 21
             "db_connected" => false,
22 22
         ], 
23 23
 
24
-        "video_properties" => (object) [ "status" => "unloaded" ],
25
-        "user_properties"  => (object) [ "status" => "unloaded" ],
26
-        "group_properties" => (object) [ "status" => "unloaded" ],
27
-        "forum_properties" => (object) [ "status" => "unloaded" ],
24
+        "video_properties" => (object) ["status" => "unloaded"],
25
+        "user_properties"  => (object) ["status" => "unloaded"],
26
+        "group_properties" => (object) ["status" => "unloaded"],
27
+        "forum_properties" => (object) ["status" => "unloaded"],
28 28
     ];
29 29
 
30 30
     try
31 31
     {
32
-        $__db = new PDO("mysql:host=".$__server->db_properties->db_host.";dbname=".$__server->db_properties->db_database.";charset=utf8mb4",
32
+        $__db = new PDO("mysql:host=" . $__server->db_properties->db_host . ";dbname=" . $__server->db_properties->db_database . ";charset=utf8mb4",
33 33
             $__server->db_properties->db_user,
34 34
             $__server->db_properties->db_password,
35 35
             [
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         );
40 40
         $__server->db_properties->db_connected = true;
41 41
     }
42
-    catch(PDOException $e)
42
+    catch (PDOException $e)
43 43
     {
44 44
         $__server->db_properties->db_connected = false;
45 45
         die($e);
Please login to merge, or discard this patch.
web/public/s/classes/user_insert.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 class user_insert {
11 11
     public $__db;
12 12
 
13
-	public function __construct($conn){
13
+	public function __construct($conn) {
14 14
         $this->__db = $conn;
15 15
 	}
16 16
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $stmt->bindParam(":user", $user);
20 20
         $stmt->bindParam(":vidid", $vidid);
21 21
         $stmt->execute();
22
-        if($stmt->rowCount() === 0) {
22
+        if ($stmt->rowCount() === 0) {
23 23
             $this->add_view_channel($vidid, $user);
24 24
         }
25 25
     }
Please login to merge, or discard this patch.
web/public/s/classes/user_helper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 class user_helper {
12 12
     public $__db;
13 13
 
14
-	public function __construct($conn){
14
+	public function __construct($conn) {
15 15
         $this->__db = $conn;
16 16
 	}
17 17
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $stmt = $this->__db->prepare("SELECT pfp FROM users WHERE username = :username");
20 20
         $stmt->bindParam(":username", $username);
21 21
         $stmt->execute();
22
-        while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
22
+        while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
23 23
             $pfp = $row['pfp'];
24 24
         } // why the while statement? just remove it (i cant be bothered to)
25 25
 
Please login to merge, or discard this patch.