Test Failed
Push — main ( 71a77e...4a5de7 )
by chief
02:41
created
web/public/channel.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 <?php $__db_h = new db_helper(); ?>
14 14
 <?php $__time_h = new time_helper(); ?>
15 15
 <?php
16
-	if(isset($_SESSION['siteusername']))
17
-	    $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']);
16
+    if(isset($_SESSION['siteusername']))
17
+        $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']);
18 18
 
19 19
     if(!$__user_h->user_exists($_GET['n']))
20 20
         header("Location: /?userdoesntexist");
@@ -27,21 +27,21 @@  discard block
 block discarded – undo
27 27
         return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars.
28 28
     }
29 29
 
30
-	function addhttp($url) {
31
-		if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
32
-			$url = "http://" . $url;
33
-		}
34
-		return $url;
35
-	}
30
+    function addhttp($url) {
31
+        if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
32
+            $url = "http://" . $url;
33
+        }
34
+        return $url;
35
+    }
36 36
 
37 37
     function check_valid_colorhex($colorCode) {
38 38
         // If user accidentally passed along the # sign, strip it off
39 39
         $colorCode = ltrim($colorCode, '#');
40 40
     
41 41
         if (
42
-              ctype_xdigit($colorCode) &&
42
+                ctype_xdigit($colorCode) &&
43 43
               (strlen($colorCode) == 6 || strlen($colorCode) == 3))
44
-                   return true;
44
+                    return true;
45 45
     
46 46
         else return false;
47 47
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     $_user['2009_bgcolor'] = substr($_user['2009_bgcolor'], 0, 7);
67 67
 
68 68
     $_user['genre'] = strtolower($_user['genre']);
69
-	$_user['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_user['username']);
69
+    $_user['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_user['username']);
70 70
 
71 71
     if(!check_valid_colorhex($_user['primary_color']) && strlen($_user['primary_color']) != 6) { $_user['primary_color'] = ""; }
72 72
     if(!check_valid_colorhex($_user['secondary_color']) && strlen($_user['secondary_color']) != 6) { $_user['secondary_color'] = ""; }
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
     if(!check_valid_colorhex($_user['primary_color_text']) && strlen($_user['primary_color_text']) != 6) { $_user['primary_color_text'] = ""; }
76 76
     if(!check_valid_colorhex($_user['2009_bgcolor']) && strlen($_user['2009_bgcolor']) != 6) { $_user['2009_bgcolor'] = ""; }
77 77
 
78
-	if(isset($_SESSION['siteusername']))
79
-    	$__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']);
78
+    if(isset($_SESSION['siteusername']))
79
+        $__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']);
80 80
 
81 81
     if($_SERVER['REQUEST_METHOD'] == 'POST') {
82 82
         $error = array();
@@ -90,11 +90,11 @@  discard block
 block discarded – undo
90 90
         //if(ifBlocked(@$_SESSION['siteusername'], $user['username'], $__db)) { $error = "This user has blocked you!"; $error['status'] = true; } 
91 91
 
92 92
         if(!isset($error['message'])) {
93
-			$text = $_POST['comment'];
93
+            $text = $_POST['comment'];
94 94
             $stmt = $__db->prepare("INSERT INTO profile_comments (toid, author, comment) VALUES (:id, :username, :comment)");
95
-			$stmt->bindParam(":id", $_user['username']);
96
-			$stmt->bindParam(":username", $_SESSION['siteusername']);
97
-			$stmt->bindParam(":comment", $text);
95
+            $stmt->bindParam(":id", $_user['username']);
96
+            $stmt->bindParam(":username", $_SESSION['siteusername']);
97
+            $stmt->bindParam(":comment", $text);
98 98
             $stmt->execute();
99 99
 
100 100
             $_user_update_utils->update_comment_cooldown_time($_SESSION['siteusername']);
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             }
105 105
         }
106 106
     }
107
-	?>
107
+    ?>
108 108
 <!DOCTYPE html>
109 109
 <html dir="ltr" xmlns:og="http://opengraphprotocol.org/schema/" lang="en">
110 110
 	<!-- machid: sNW5tN3Z2SWdXaDRqNGxuNEF5MFBxM1BxWXd0VGo0Rkg3UXNTTTNCUGRDWjR0WGpHR3R1YzFR -->
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
 					<div class="channel_customization"><?php require($_SERVER['DOCUMENT_ROOT'] . "/s/mod/channel_customization.php"); ?></div>
147 147
 				<?php } ?>
148 148
 				<?php
149
-					if(empty(trim($_user['bio'])))
150
-						$_user['bio'] = "This user has no description.";
151
-				?>
149
+                    if(empty(trim($_user['bio'])))
150
+                        $_user['bio'] = "This user has no description.";
151
+                ?>
152 152
 				<div id="content">
153 153
 					<div class="subscription-menu-expandable subscription-menu-expandable-channels3 yt-rounded ytg-wide hid">
154 154
 						<div class="content" id="recommended-channels-list"></div>
@@ -477,9 +477,9 @@  discard block
 block discarded – undo
477 477
 													<h2>Featured Channels</h2>
478 478
 													<ul class="channel-summary-list ">
479 479
 														<?php 
480
-															foreach($_user['featured_channels'] as $user) {
481
-																if($__user_h->user_exists($user)) {
482
-														?>
480
+                                                            foreach($_user['featured_channels'] as $user) {
481
+                                                                if($__user_h->user_exists($user)) {
482
+                                                        ?>
483 483
 															<li class="yt-tile-visible yt-uix-tile">
484 484
 																<div class="channel-summary clearfix channel-summary-compact">
485 485
 																	<div class="channel-summary-thumb">
@@ -503,19 +503,19 @@  discard block
 block discarded – undo
503 503
 											</div>
504 504
 
505 505
 											<?php 
506
-												$stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10");
507
-												$stmt->bindParam(":search", $_user['username']);
508
-												$stmt->execute();
506
+                                                $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10");
507
+                                                $stmt->bindParam(":search", $_user['username']);
508
+                                                $stmt->execute();
509 509
 
510
-												if($stmt->rowCount() != 0) {
511
-											?>
510
+                                                if($stmt->rowCount() != 0) {
511
+                                            ?>
512 512
 												<div class="playlists-narrow channel-module yt-uix-c3-module-container">
513 513
 													<div class="module-view gh-featured">
514 514
 														<h2>Featured Playlists</h2>     
515 515
 														<?php
516
-														while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { 
517
-															$playlist['videos'] = json_decode($playlist['videos']);
518
-														?> 
516
+                                                        while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { 
517
+                                                            $playlist['videos'] = json_decode($playlist['videos']);
518
+                                                        ?> 
519 519
 															<div class="playlist yt-tile-visible yt-uix-tile">
520 520
 																<a href="/view_playlist?v=<?php echo $playlist['rid']; ?>">
521 521
 																<span class="playlist-thumb-strip playlist-thumb-strip-252"><span class="videos videos-4 horizontal-cutoff"><span class="clip"><span class="centering-offset"><span class="centering">
Please login to merge, or discard this patch.
web/public/channel_feed.php 1 patch
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 <?php $__db_h = new db_helper(); ?>
14 14
 <?php $__time_h = new time_helper(); ?>
15 15
 <?php
16
-	if(isset($_SESSION['siteusername']))
17
-	    $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']);
16
+    if(isset($_SESSION['siteusername']))
17
+        $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']);
18 18
 
19 19
     if(!$__user_h->user_exists($_GET['n']))
20 20
         header("Location: /?userdoesntexist");
@@ -27,21 +27,21 @@  discard block
 block discarded – undo
27 27
         return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars.
28 28
     }
29 29
 
30
-	function addhttp($url) {
31
-		if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
32
-			$url = "http://" . $url;
33
-		}
34
-		return $url;
35
-	}
30
+    function addhttp($url) {
31
+        if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
32
+            $url = "http://" . $url;
33
+        }
34
+        return $url;
35
+    }
36 36
 
37 37
     function check_valid_colorhex($colorCode) {
38 38
         // If user accidentally passed along the # sign, strip it off
39 39
         $colorCode = ltrim($colorCode, '#');
40 40
     
41 41
         if (
42
-              ctype_xdigit($colorCode) &&
42
+                ctype_xdigit($colorCode) &&
43 43
               (strlen($colorCode) == 6 || strlen($colorCode) == 3))
44
-                   return true;
44
+                    return true;
45 45
     
46 46
         else return false;
47 47
     }
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
     if(!check_valid_colorhex($_user['primary_color_text']) && strlen($_user['primary_color_text']) != 6) { $_user['primary_color_text'] = ""; }
77 77
     if(!check_valid_colorhex($_user['2009_bgcolor']) && strlen($_user['2009_bgcolor']) != 6) { $_user['2009_bgcolor'] = ""; }
78 78
 
79
-	if(isset($_SESSION['siteusername']))
80
-    	$__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']);
79
+    if(isset($_SESSION['siteusername']))
80
+        $__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']);
81 81
 
82 82
     if($_SERVER['REQUEST_METHOD'] == 'POST') {
83 83
         $error = array();
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
         //if(ifBlocked(@$_SESSION['siteusername'], $user['username'], $__db)) { $error = "This user has blocked you!"; $error['status'] = true; } 
92 92
 
93 93
         if(!isset($error['message'])) {
94
-			$text = $_POST['comment'];
94
+            $text = $_POST['comment'];
95 95
             $stmt = $__db->prepare("INSERT INTO profile_comments (toid, author, comment) VALUES (:id, :username, :comment)");
96
-			$stmt->bindParam(":id", $_user['username']);
97
-			$stmt->bindParam(":username", $_SESSION['siteusername']);
98
-			$stmt->bindParam(":comment", $text);
96
+            $stmt->bindParam(":id", $_user['username']);
97
+            $stmt->bindParam(":username", $_SESSION['siteusername']);
98
+            $stmt->bindParam(":comment", $text);
99 99
             $stmt->execute();
100 100
 
101 101
             $_user_update_utils->update_comment_cooldown_time($_SESSION['siteusername']);
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             }
106 106
         }
107 107
     }
108
-	?>
108
+    ?>
109 109
 <!DOCTYPE html>
110 110
 <html dir="ltr" xmlns:og="http://opengraphprotocol.org/schema/" lang="en">
111 111
 	<!-- machid: sNW5tN3Z2SWdXaDRqNGxuNEF5MFBxM1BxWXd0VGo0Rkg3UXNTTTNCUGRDWjR0WGpHR3R1YzFR -->
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
 					<div class="channel_customization"><?php require($_SERVER['DOCUMENT_ROOT'] . "/s/mod/channel_customization.php"); ?></div>
147 147
 				<?php } ?> 
148 148
 				<?php
149
-					if(empty(trim($_user['bio'])))
150
-						$_user['bio'] = "This user has no description.";
151
-				?>
149
+                    if(empty(trim($_user['bio'])))
150
+                        $_user['bio'] = "This user has no description.";
151
+                ?>
152 152
 				<div id="content">
153 153
 					<div class="subscription-menu-expandable subscription-menu-expandable-channels3 yt-rounded ytg-wide hid">
154 154
 						<div class="content" id="recommended-channels-list"></div>
@@ -320,19 +320,19 @@  discard block
 block discarded – undo
320 320
 																	  ORDER BY 
321 321
 																		`date` DESC;");
322 322
                                                                         $stmt->bindParam(":comment_username", $_user['username']);
323
-																		$stmt->bindParam(":videos_username", $_user['username']);
323
+                                                                        $stmt->bindParam(":videos_username", $_user['username']);
324 324
                                                                         $stmt->execute();
325 325
                                                                         while($content = $stmt->fetch(PDO::FETCH_ASSOC)) { 
326
-																			if((int)$content['id']) {
327
-																				$content = $__video_h->fetch_comment_id($content['id']);
328
-																				$content['video'] = $__video_h->fetch_video_rid($content['toid']);
329
-																				$content['type'] = "comment";
330
-																			} else {
331
-																				$content = $__video_h->fetch_video_rid($content['id']);
332
-																				$content['type'] = "video";
333
-																			}
326
+                                                                            if((int)$content['id']) {
327
+                                                                                $content = $__video_h->fetch_comment_id($content['id']);
328
+                                                                                $content['video'] = $__video_h->fetch_video_rid($content['toid']);
329
+                                                                                $content['type'] = "comment";
330
+                                                                            } else {
331
+                                                                                $content = $__video_h->fetch_video_rid($content['id']);
332
+                                                                                $content['type'] = "video";
333
+                                                                            }
334 334
 
335
-																			if($content['type'] == "video") {
335
+                                                                            if($content['type'] == "video") {
336 336
                                                                     ?>
337 337
                                                                     <div class="feed-item-container" data-channel-key="UCc6W7efUSkd9YYoxOnctlFg">
338 338
                                                                         <a href="/user/<?php echo htmlspecialchars($content['author']); ?>?feature=plcp" class="feed-author-bubble " title="<?php echo htmlspecialchars($content['author']); ?>">  <span class="feed-item-author">
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
                                                                         </div>
405 405
                                                                     </div>
406 406
                                                                     <?php } else { 
407
-																		if($__video_h->video_exists($content['video']['rid'])) { ?>
407
+                                                                        if($__video_h->video_exists($content['video']['rid'])) { ?>
408 408
 																	<div class="feed-item-container" data-channel-key="UCXf1X2u5gsmuqcuTQlpOGhw">
409 409
 																		<a href="/user/<?php echo htmlspecialchars($content['author']); ?>?feature=plcp" class="feed-author-bubble " title="<?php echo htmlspecialchars($content['author']); ?>">  <span class="feed-item-author">
410 410
 																		<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="<?php echo htmlspecialchars($content['author']); ?>" data-thumb="/dynamic/pfp/<?php echo $__user_h->fetch_pfp($content['author']); ?>" width="28"><span class="vertical-align"></span></span></span></span>
@@ -576,9 +576,9 @@  discard block
 block discarded – undo
576 576
 													<h2>Featured Channels</h2>
577 577
 													<ul class="channel-summary-list ">
578 578
 														<?php 
579
-															foreach($_user['featured_channels'] as $user) {
580
-																if($__user_h->user_exists($user)) {
581
-														?>
579
+                                                            foreach($_user['featured_channels'] as $user) {
580
+                                                                if($__user_h->user_exists($user)) {
581
+                                                        ?>
582 582
 															<li class="yt-tile-visible yt-uix-tile">
583 583
 																<div class="channel-summary clearfix channel-summary-compact">
584 584
 																	<div class="channel-summary-thumb">
@@ -602,19 +602,19 @@  discard block
 block discarded – undo
602 602
 											</div>
603 603
 
604 604
 											<?php 
605
-												$stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10");
606
-												$stmt->bindParam(":search", $_user['username']);
607
-												$stmt->execute();
605
+                                                $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10");
606
+                                                $stmt->bindParam(":search", $_user['username']);
607
+                                                $stmt->execute();
608 608
 
609
-												if($stmt->rowCount() != 0) {
610
-											?>
609
+                                                if($stmt->rowCount() != 0) {
610
+                                            ?>
611 611
 												<div class="playlists-narrow channel-module yt-uix-c3-module-container">
612 612
 													<div class="module-view gh-featured">
613 613
 														<h2>Featured Playlists</h2>     
614 614
 														<?php
615
-														while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { 
616
-															$playlist['videos'] = json_decode($playlist['videos']);
617
-														?> 
615
+                                                        while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { 
616
+                                                            $playlist['videos'] = json_decode($playlist['videos']);
617
+                                                        ?> 
618 618
 															<div class="playlist yt-tile-visible yt-uix-tile">
619 619
 																<a href="/view_playlist?v=<?php echo $playlist['rid']; ?>">
620 620
 																<span class="playlist-thumb-strip playlist-thumb-strip-252"><span class="videos videos-4 horizontal-cutoff"><span class="clip"><span class="centering-offset"><span class="centering">
Please login to merge, or discard this patch.