Test Failed
Pull Request — main (#21)
by
unknown
02:57
created
web/public/get/unsubscribe.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
     ]
22 22
 ];
23 23
 
24
-if(!$__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) 
24
+if (!$__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) 
25 25
     { $request->error->message = "You aren't subscribed to this person!"; $request->error->status = ""; }
26 26
 
27
-if($request->error->status == "OK") { 
27
+if ($request->error->status == "OK") { 
28 28
     $stmt = $__db->prepare("DELETE FROM subscribers WHERE sender=:sender AND reciever=:reciever");
29 29
     $stmt->execute(array(
30 30
       ':sender' => $request->sender,
Please login to merge, or discard this patch.
web/public/video_manager_ajax.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 <?php
12 12
     $search = $_SESSION['siteusername'];
13 13
 
14
-    if($_GET['filter'] == "time") {
14
+    if ($_GET['filter'] == "time") {
15 15
         $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY id DESC");
16 16
         $stmt->bindParam(":username", $_SESSION['siteusername']);
17 17
         $stmt->execute();
18
-    } else if($_GET['filter'] == "title") {
18
+    } else if ($_GET['filter'] == "title") {
19 19
         $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY title DESC");
20 20
         $stmt->bindParam(":username", $_SESSION['siteusername']);
21 21
         $stmt->execute();
@@ -23,23 +23,23 @@  discard block
 block discarded – undo
23 23
 
24 24
     $results_per_page = 12;
25 25
     $number_of_result = $stmt->rowCount();
26
-    $number_of_page = ceil ($number_of_result / $results_per_page);  
26
+    $number_of_page = ceil($number_of_result/$results_per_page);  
27 27
 
28
-    if (!isset ($_GET['page']) ) {  
28
+    if (!isset ($_GET['page'])) {  
29 29
         $page = 1;  
30 30
     } else {  
31
-        $page = (int)$_GET['page'];  
31
+        $page = (int) $_GET['page'];  
32 32
     }  
33 33
 
34
-    $page_first_result = ($page - 1) * $results_per_page;  
34
+    $page_first_result = ($page - 1)*$results_per_page;  
35 35
 
36
-    if($_GET['filter'] == "time") {
36
+    if ($_GET['filter'] == "time") {
37 37
         $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY id DESC LIMIT :pfirst, :pper");
38 38
         $stmt6->bindParam(":search", $search);
39 39
         $stmt6->bindParam(":pfirst", $page_first_result);
40 40
         $stmt6->bindParam(":pper", $results_per_page);
41 41
         $stmt6->execute();
42
-    } else if($_GET['filter'] == "title") {
42
+    } else if ($_GET['filter'] == "title") {
43 43
         $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY title LIMIT :pfirst, :pper");
44 44
         $stmt6->bindParam(":search", $search);
45 45
         $stmt6->bindParam(":pfirst", $page_first_result);
@@ -52,15 +52,15 @@  discard block
 block discarded – undo
52 52
         <th style="width: 80%;">
53 53
             <small class="video-filter-options">
54 54
                 Sort by:  
55
-                <a id="selector-title" onclick="changeFilter_Title();" <?php if($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | 
56
-                    <a id="selector-time" onclick="changeFilter_Time();" <?php if($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a>
55
+                <a id="selector-title" onclick="changeFilter_Title();" <?php if ($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | 
56
+                    <a id="selector-time" onclick="changeFilter_Time();" <?php if ($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a>
57 57
             </small>
58 58
         </th>
59 59
         <th style="margin: 5px; width: 20%;"></th>
60 60
     </tr>
61 61
     
62 62
     <?php
63
-        while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { 
63
+        while ($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { 
64 64
             $video['video_responses'] = $__video_h->get_video_responses($video['rid']);
65 65
             $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
66 66
             $video['duration'] = $__time_h->timestamp($video['duration']);
@@ -69,19 +69,19 @@  discard block
 block discarded – undo
69 69
             $video['title'] = htmlspecialchars($video['title']);
70 70
             $video['description'] = $__video_h->shorten_description($video['description'], 50);
71 71
 
72
-            if($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") {
72
+            if ($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") {
73 73
                 $status = "Corrupted";
74
-            } else if($video['visibility'] == "v") {
74
+            } else if ($video['visibility'] == "v") {
75 75
                 $status = "Approved";
76
-            } else if($video['visibility'] == "n") {
76
+            } else if ($video['visibility'] == "n") {
77 77
                 $status = "Approved";
78
-            } else if($video['visibility'] == "o") {
78
+            } else if ($video['visibility'] == "o") {
79 79
                 $status = "Disapproved";
80 80
             } else {
81 81
                 $status = "Unknown";
82 82
             }                      
83 83
             
84
-            if($video['commenting'] == "a") 
84
+            if ($video['commenting'] == "a") 
85 85
                 $video['commentstatus'] = "Commenting allowed";
86 86
             else 
87 87
                 $video['commentstatus'] = "Commenting disallowed";
Please login to merge, or discard this patch.
web/public/activism.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 										<?php
141 141
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4");
142 142
 											$stmt->execute();
143
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
143
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
144 144
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
145 145
 												$video['duration'] = $__time_h->timestamp($video['duration']);
146 146
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 										<?php
176 176
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4");
177 177
 											$stmt->execute();
178
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
178
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
179 179
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
180 180
 												$video['duration'] = $__time_h->timestamp($video['duration']);
181 181
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 										<?php
211 211
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4");
212 212
 											$stmt->execute();
213
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
213
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
214 214
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
215 215
 												$video['duration'] = $__time_h->timestamp($video['duration']);
216 216
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 										<?php
246 246
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4");
247 247
 											$stmt->execute();
248
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
248
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
249 249
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
250 250
 												$video['duration'] = $__time_h->timestamp($video['duration']);
251 251
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 										<?php
281 281
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4");
282 282
 											$stmt->execute();
283
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
283
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
284 284
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
285 285
 												$video['duration'] = $__time_h->timestamp($video['duration']);
286 286
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
Please login to merge, or discard this patch.
web/public/videos.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 										<?php
141 141
 											$stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4");
142 142
 											$stmt->execute();
143
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
143
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
144 144
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
145 145
 												$video['duration'] = $__time_h->timestamp($video['duration']);
146 146
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 										<?php
186 186
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Comedy' ORDER BY rand() LIMIT 4");
187 187
 											$stmt->execute();
188
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
188
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
189 189
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
190 190
 												$video['duration'] = $__time_h->timestamp($video['duration']);
191 191
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 										<?php
231 231
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4");
232 232
 											$stmt->execute();
233
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
233
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
234 234
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
235 235
 												$video['duration'] = $__time_h->timestamp($video['duration']);
236 236
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 										<?php
280 280
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Gaming' ORDER BY rand() LIMIT 4");
281 281
 											$stmt->execute();
282
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
282
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
283 283
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
284 284
 												$video['duration'] = $__time_h->timestamp($video['duration']);
285 285
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 										<?php
329 329
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4");
330 330
 											$stmt->execute();
331
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
331
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
332 332
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
333 333
 												$video['duration'] = $__time_h->timestamp($video['duration']);
334 334
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
 										<?php
378 378
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4");
379 379
 											$stmt->execute();
380
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
380
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
381 381
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
382 382
 												$video['duration'] = $__time_h->timestamp($video['duration']);
383 383
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
 										<?php
427 427
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4");
428 428
 											$stmt->execute();
429
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
429
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
430 430
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
431 431
 												$video['duration'] = $__time_h->timestamp($video['duration']);
432 432
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
 										<?php
476 476
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4");
477 477
 											$stmt->execute();
478
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
478
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
479 479
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
480 480
 												$video['duration'] = $__time_h->timestamp($video['duration']);
481 481
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
Please login to merge, or discard this patch.
web/public/autos.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 										<?php
141 141
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4");
142 142
 											$stmt->execute();
143
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
143
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
144 144
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
145 145
 												$video['duration'] = $__time_h->timestamp($video['duration']);
146 146
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 										<?php
176 176
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4");
177 177
 											$stmt->execute();
178
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
178
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
179 179
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
180 180
 												$video['duration'] = $__time_h->timestamp($video['duration']);
181 181
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 										<?php
211 211
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4");
212 212
 											$stmt->execute();
213
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
213
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
214 214
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
215 215
 												$video['duration'] = $__time_h->timestamp($video['duration']);
216 216
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 										<?php
246 246
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4");
247 247
 											$stmt->execute();
248
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
248
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
249 249
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
250 250
 												$video['duration'] = $__time_h->timestamp($video['duration']);
251 251
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 										<?php
281 281
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4");
282 282
 											$stmt->execute();
283
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
283
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
284 284
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
285 285
 												$video['duration'] = $__time_h->timestamp($video['duration']);
286 286
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
Please login to merge, or discard this patch.
web/public/entertainment.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 										<?php
141 141
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Entertainment' ORDER BY rand() LIMIT 4");
142 142
 											$stmt->execute();
143
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
143
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
144 144
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
145 145
 												$video['duration'] = $__time_h->timestamp($video['duration']);
146 146
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 										<?php
176 176
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Entertainment' ORDER BY rand() LIMIT 4");
177 177
 											$stmt->execute();
178
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
178
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
179 179
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
180 180
 												$video['duration'] = $__time_h->timestamp($video['duration']);
181 181
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 										<?php
211 211
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Entertainment' ORDER BY rand() LIMIT 4");
212 212
 											$stmt->execute();
213
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
213
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
214 214
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
215 215
 												$video['duration'] = $__time_h->timestamp($video['duration']);
216 216
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 										<?php
246 246
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Entertainment' ORDER BY rand() LIMIT 4");
247 247
 											$stmt->execute();
248
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
248
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
249 249
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
250 250
 												$video['duration'] = $__time_h->timestamp($video['duration']);
251 251
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 										<?php
281 281
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Entertainment' ORDER BY rand() LIMIT 4");
282 282
 											$stmt->execute();
283
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
283
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
284 284
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
285 285
 												$video['duration'] = $__time_h->timestamp($video['duration']);
286 286
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
Please login to merge, or discard this patch.
web/public/playlists_ajax.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@  discard block
 block discarded – undo
11 11
 <?php
12 12
     $search = $_SESSION['siteusername'];
13 13
 
14
-    if($_GET['filter'] == "time") {
14
+    if ($_GET['filter'] == "time") {
15 15
         $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY id DESC");
16 16
         $stmt->bindParam(":username", $_SESSION['siteusername']);
17 17
         $stmt->execute();
18 18
         $result = $stmt->get_result();
19 19
         $results = $result->num_rows;
20
-    } else if($_GET['filter'] == "title") {
20
+    } else if ($_GET['filter'] == "title") {
21 21
         $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY title DESC");
22 22
         $stmt->bindParam(":username", $_SESSION['siteusername']);
23 23
         $stmt->execute();
@@ -30,18 +30,18 @@  discard block
 block discarded – undo
30 30
         <th style="width: 80%;">
31 31
             <small class="video-filter-options">
32 32
                 Sort by:  
33
-                <a id="selector-title" onclick="changeFilter_Title();" <?php if($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | 
34
-                    <a id="selector-time" onclick="changeFilter_Time();" <?php if($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a>
33
+                <a id="selector-title" onclick="changeFilter_Title();" <?php if ($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | 
34
+                    <a id="selector-time" onclick="changeFilter_Time();" <?php if ($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a>
35 35
             </small>
36 36
         </th>
37 37
         <th style="margin: 5px; width: 20%;"></th>
38 38
     </tr>
39 39
     
40 40
     <?php
41
-        while($playlist = $result->fetch_assoc()) { 
41
+        while ($playlist = $result->fetch_assoc()) { 
42 42
             $playlist['videos'] = json_decode($playlist['videos']);
43
-            if($__video_h->video_exists(@$playlist['videos'][0])) {
44
-                if(count($playlist['videos']) != 0) {
43
+            if ($__video_h->video_exists(@$playlist['videos'][0])) {
44
+                if (count($playlist['videos']) != 0) {
45 45
                     $video = $__video_h->fetch_video_rid($playlist['videos'][0]);
46 46
                     $video['video_responses'] = $__video_h->get_video_responses($video['rid']);
47 47
                     $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
Please login to merge, or discard this patch.
web/public/travel.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 										<?php
141 141
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4");
142 142
 											$stmt->execute();
143
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
143
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
144 144
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
145 145
 												$video['duration'] = $__time_h->timestamp($video['duration']);
146 146
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 										<?php
176 176
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4");
177 177
 											$stmt->execute();
178
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
178
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
179 179
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
180 180
 												$video['duration'] = $__time_h->timestamp($video['duration']);
181 181
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 										<?php
211 211
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4");
212 212
 											$stmt->execute();
213
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
213
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
214 214
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
215 215
 												$video['duration'] = $__time_h->timestamp($video['duration']);
216 216
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 										<?php
246 246
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4");
247 247
 											$stmt->execute();
248
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
248
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
249 249
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
250 250
 												$video['duration'] = $__time_h->timestamp($video['duration']);
251 251
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 										<?php
281 281
 											$stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Travel & Events' ORDER BY rand() LIMIT 4");
282 282
 											$stmt->execute();
283
-											while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
283
+											while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
284 284
 												$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
285 285
 												$video['duration'] = $__time_h->timestamp($video['duration']);
286 286
 												$video['views'] = $__video_h->fetch_video_views($video['rid']);
Please login to merge, or discard this patch.
web/public/logout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php 
2 2
 require($_SERVER['DOCUMENT_ROOT'] . "/s/classes/config.inc.php");
3 3
 
4
-if(isset($_SESSION['siteusername'])) {
4
+if (isset($_SESSION['siteusername'])) {
5 5
     $_SESSION = [];
6 6
     session_destroy();
7 7
 }
Please login to merge, or discard this patch.