Test Failed
Push — main ( 71a77e...4a5de7 )
by chief
02:41
created
web/public/uploaded_video.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
     $video['title'] = htmlspecialchars($video['title']);
19 19
     $video['description'] = $__video_h->shorten_description($video['description'], 50);
20 20
 
21
-	if(!$__video_h->video_exists($_GET['v']))
22
-		header("Location: /?error=Your video has not processed correctly. Try reuploading it with a shorter title, description, or tag.");
21
+    if(!$__video_h->video_exists($_GET['v']))
22
+        header("Location: /?error=Your video has not processed correctly. Try reuploading it with a shorter title, description, or tag.");
23 23
 
24 24
     if($_SESSION['siteusername'] != $video['author'])
25 25
         header("Location: /");
Please login to merge, or discard this patch.
web/public/get_video_info.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
 
38 38
 // these are all the videos, with their settings, and formats
39 39
 $fmt_stream_map = [
40
-	[
41
-	"itag" => "43",
40
+    [
41
+    "itag" => "43",
42 42
     "url" => $_video['fmtPath'],
43 43
     "sig" => "aintnothinggonnabreakmystrideaintnothinggonnaslowmedownnooigottakeeponmovin",
44 44
     "fallback_host" => "tc.v14.cache3.c.youtube.com",
45 45
     "quality" => "hd720",
46 46
     "type" => "video/webm; codecs=\"vp8.0, vorbis\""
47
-	],
47
+    ],
48 48
 ];
49 49
 
50 50
 $count = 0;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     "avg_rating" => "5.0",
70 70
     "ttsurl" => "http://www.youtube.com/api/timedtext?signature=E949556D4478C57B95F0E4268F8D85D460D27DF6.1EC1679B0E1466625B2A029D836BE9C135A0B300&hl=en_US&caps=asr&expire=1361228889&sparams=asr_langs%2Ccaps%2Cv%2Cexpire&v=LHdA7Yc-8Rg&key=yttt1&asr_langs=ko%2Cde%2Cpt%2Cen%2Cnl%2Cja%2Cru%2Ces%2Cfr%2Cit",
71 71
     "url_encoded_fmt_stream_map" => $url_encoded_fmt_stream_map,
72
-	"plid" => "AATWAe5iQ_FjAV-I",
72
+    "plid" => "AATWAe5iQ_FjAV-I",
73 73
     "view_count" => "24465",
74 74
     "cc_asr" => "1",
75 75
     "token" => "vjVQa1PpcFPQw_h19VxFJZdJZbKkh5-obrhC9M93j-E=",
Please login to merge, or discard this patch.
web/public/watch_2.php 1 patch
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
         if($__user_h->if_cooldown($_SESSION['siteusername'])) { $error['message'] = "You are on a cooldown! Wait for a minute before posting another comment."; $error['status'] = true; }
24 24
 
25 25
         if(!isset($error['message'])) {
26
-			$text = $_POST['comment'];
26
+            $text = $_POST['comment'];
27 27
             $stmt = $__db->prepare("INSERT INTO comments (toid, author, comment) VALUES (:v, :username, :comment)");
28 28
             $stmt->bindParam(":v", $_GET['v']);
29
-			$stmt->bindParam(":username", $_SESSION['siteusername']);
30
-			$stmt->bindParam(":comment", $text);
29
+            $stmt->bindParam(":username", $_SESSION['siteusername']);
30
+            $stmt->bindParam(":comment", $text);
31 31
             $stmt->execute();
32 32
 
33
-			$__user_u->update_cooldown_time($_SESSION['siteusername'], "cooldown_comment");
33
+            $__user_u->update_cooldown_time($_SESSION['siteusername'], "cooldown_comment");
34 34
         }
35 35
     }
36 36
 ?>
@@ -53,28 +53,28 @@  discard block
 block discarded – undo
53 53
 			if (window.yt.timing) {yt.timing.tick("ct");}    
54 54
 		</script>
55 55
 		<?php
56
-			$_video['dislikes'] =  $__video_h->get_video_stars_level($_video['rid'], 1);
57
-			$_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2);
56
+            $_video['dislikes'] =  $__video_h->get_video_stars_level($_video['rid'], 1);
57
+            $_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2);
58 58
 
59
-			$_video['likes'] =     $__video_h->get_video_stars_level($_video['rid'], 4);
60
-			$_video['likes'] +=    $__video_h->get_video_stars_level($_video['rid'], 5);
59
+            $_video['likes'] =     $__video_h->get_video_stars_level($_video['rid'], 4);
60
+            $_video['likes'] +=    $__video_h->get_video_stars_level($_video['rid'], 5);
61 61
 
62
-			$_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false);
63
-			$_video['likes'] += $__video_h->get_video_likes($_video['rid'], true);
62
+            $_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false);
63
+            $_video['likes'] += $__video_h->get_video_likes($_video['rid'], true);
64 64
 
65
-			if($_video['likes'] == 0 && $_video['dislikes'] == 0) {
66
-				$_video['likeswidth'] = 50;
67
-				$_video['dislikeswidth'] = 50;
68
-			} else {
69
-				$_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100;
70
-				$_video['dislikeswidth'] = 100 - $_video['likeswidth'];
71
-			}
65
+            if($_video['likes'] == 0 && $_video['dislikes'] == 0) {
66
+                $_video['likeswidth'] = 50;
67
+                $_video['dislikeswidth'] = 50;
68
+            } else {
69
+                $_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100;
70
+                $_video['dislikeswidth'] = 100 - $_video['likeswidth'];
71
+            }
72 72
 
73
-			$_video['liked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], true);
74
-			$_video['disliked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], false);
75
-			$_video['author_videos'] = $__video_h->fetch_user_videos($_video['author']);
76
-			$_video['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_video['author']);
77
-		?>
73
+            $_video['liked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], true);
74
+            $_video['disliked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], false);
75
+            $_video['author_videos'] = $__video_h->fetch_user_videos($_video['author']);
76
+            $_video['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_video['author']);
77
+        ?>
78 78
 	</head>
79 79
 	<body id="" class="date-20120927 en_US ltr   ytg-old-clearfix guide-feed-v2 gecko gecko-15" dir="ltr">
80 80
 		<form name="logoutForm" method="POST" action="/logout">
@@ -360,10 +360,10 @@  discard block
 block discarded – undo
360 360
 												</div>
361 361
 											</div>
362 362
 											<?php 
363
-												$stmt = $__db->prepare("SELECT * FROM video_response WHERE toid = :v ORDER BY id DESC LIMIT 4");
364
-												$stmt->bindParam(":v", $_GET['v']);
365
-												$stmt->execute();
366
-											?>
363
+                                                $stmt = $__db->prepare("SELECT * FROM video_response WHERE toid = :v ORDER BY id DESC LIMIT 4");
364
+                                                $stmt->bindParam(":v", $_GET['v']);
365
+                                                $stmt->execute();
366
+                                            ?>
367 367
 
368 368
 											<?php if($stmt->rowCount() != 0) { ?>
369 369
 												<div class="comments-section">
@@ -373,16 +373,16 @@  discard block
 block discarded – undo
373 373
 													<h4>Video Responses</h4>
374 374
 													<ul class="video-list">
375 375
 													<?php 
376
-														while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { 
377
-															if($__video_h->video_exists($video['video'])) { 
378
-																$video = $__video_h->fetch_video_rid($video['video']);
379
-																$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
380
-																$video['duration'] = $__time_h->timestamp($video['duration']);
381
-																$video['views'] = $__video_h->fetch_video_views($video['rid']);
382
-																$video['author'] = htmlspecialchars($video['author']);		
383
-																$video['title'] = htmlspecialchars($video['title']);
384
-																$video['description'] = $__video_h->shorten_description($video['description'], 50);
385
-													?>
376
+                                                        while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { 
377
+                                                            if($__video_h->video_exists($video['video'])) { 
378
+                                                                $video = $__video_h->fetch_video_rid($video['video']);
379
+                                                                $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
380
+                                                                $video['duration'] = $__time_h->timestamp($video['duration']);
381
+                                                                $video['views'] = $__video_h->fetch_video_views($video['rid']);
382
+                                                                $video['author'] = htmlspecialchars($video['author']);		
383
+                                                                $video['title'] = htmlspecialchars($video['title']);
384
+                                                                $video['description'] = $__video_h->shorten_description($video['description'], 50);
385
+                                                    ?>
386 386
 														<li class="video-list-item yt-tile-default">
387 387
 															<a href="/watch?v=<?php echo $video['rid']; ?>" class="related-video yt-uix-contextlink  yt-uix-sessionlink" data-sessionlink="<?php echo htmlspecialchars($_video['author']); ?>&amp;feature=watch_response"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><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 $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span>
388 388
 															<button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="cjls0QsHOBE" role="button"><span class="yt-uix-button-content">  <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later">
@@ -464,31 +464,31 @@  discard block
 block discarded – undo
464 464
 												</div>
465 465
 												<ul class="comment-list" id="live_comments">
466 466
 														<?php
467
-														$results_per_page = 20;
467
+                                                        $results_per_page = 20;
468 468
 
469
-														$stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC");
470
-														$stmt->bindParam(":rid", $_video['rid']);
471
-														$stmt->execute();
469
+                                                        $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC");
470
+                                                        $stmt->bindParam(":rid", $_video['rid']);
471
+                                                        $stmt->execute();
472 472
 
473
-														$number_of_result = $stmt->rowCount();
474
-														$number_of_page = ceil ($number_of_result / $results_per_page);  
473
+                                                        $number_of_result = $stmt->rowCount();
474
+                                                        $number_of_page = ceil ($number_of_result / $results_per_page);  
475 475
 
476
-														if (!isset ($_GET['page']) ) {  
477
-															$page = 1;  
478
-														} else {  
479
-															$page = (int)$_GET['page'];  
480
-														}  
476
+                                                        if (!isset ($_GET['page']) ) {  
477
+                                                            $page = 1;  
478
+                                                        } else {  
479
+                                                            $page = (int)$_GET['page'];  
480
+                                                        }  
481 481
 
482
-														$page_first_result = ($page - 1) * $results_per_page;  
482
+                                                        $page_first_result = ($page - 1) * $results_per_page;  
483 483
 
484
-														$stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper");
485
-														$stmt->bindParam(":rid", $_video['rid']);
486
-														$stmt->bindParam(":pfirst", $page_first_result);
487
-														$stmt->bindParam(":pper", $results_per_page);
488
-														$stmt->execute();
484
+                                                        $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper");
485
+                                                        $stmt->bindParam(":rid", $_video['rid']);
486
+                                                        $stmt->bindParam(":pfirst", $page_first_result);
487
+                                                        $stmt->bindParam(":pper", $results_per_page);
488
+                                                        $stmt->execute();
489 489
 
490
-														while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { 
491
-													?>
490
+                                                        while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { 
491
+                                                    ?>
492 492
 
493 493
 													<li class="comment yt-tile-default " data-author-viewing="" data-author-id="-uD01K8FQTeOSS5sniRFzQ" data-id="HdQrMeklJ_5hd_uPDRcvtdaMk2pMVS8d9sufcfiGx0U" data-score="0">
494 494
 														<div class="comment-body">
@@ -567,16 +567,16 @@  discard block
 block discarded – undo
567 567
 											<ul id="watch-related" class="video-list">
568 568
 												<div id="ppv-container" class="hid"></div>
569 569
 												<?php
570
-													$stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20");
571
-													$stmt->execute();
572
-													while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
573
-														$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
574
-														$video['duration'] = $__time_h->timestamp($video['duration']);
575
-														$video['views'] = $__video_h->fetch_video_views($video['rid']);
576
-														$video['author'] = htmlspecialchars($video['author']);		
577
-														$video['title'] = htmlspecialchars($video['title']);
578
-														$video['description'] = $__video_h->shorten_description($video['description'], 50);
579
-												?>
570
+                                                    $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20");
571
+                                                    $stmt->execute();
572
+                                                    while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
573
+                                                        $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
574
+                                                        $video['duration'] = $__time_h->timestamp($video['duration']);
575
+                                                        $video['views'] = $__video_h->fetch_video_views($video['rid']);
576
+                                                        $video['author'] = htmlspecialchars($video['author']);		
577
+                                                        $video['title'] = htmlspecialchars($video['title']);
578
+                                                        $video['description'] = $__video_h->shorten_description($video['description'], 50);
579
+                                                ?>
580 580
 												<li class="video-list-item"><a href="/watch?v=<?php echo $video['rid']; ?>" class="related-video yt-uix-contextlink  yt-uix-sessionlink" data-sessionlink="ved=CAIQzRooAA%3D%3D&amp;<?php echo htmlspecialchars($_video['author']); ?>&amp;feature=relmfu"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><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 $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span>
581 581
 													<button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="gyAaIKF6tSQ" role="button"><span class="yt-uix-button-content">  <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later">
582 582
 													</span><img class="yt-uix-button-arrow" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""></button>
Please login to merge, or discard this patch.
web/public/get/dislike_video.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { 
21 21
     $stmt = $__db->prepare("DELETE FROM likes WHERE sender = :username AND reciever = :reciever");
22 22
     $stmt->execute(array(
23
-      ':username' => $_SESSION['siteusername'],
24
-      ':reciever' => $name,
23
+        ':username' => $_SESSION['siteusername'],
24
+        ':reciever' => $name,
25 25
     ));
26 26
     header('Location: ' . $_SERVER['HTTP_REFERER']);
27 27
 }
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { 
34 34
     $stmt = $__db->prepare("DELETE FROM likes WHERE sender = :username AND reciever = :reciever");
35 35
     $stmt->execute(array(
36
-      ':username' => $_SESSION['siteusername'],
37
-      ':reciever' => $name,
36
+        ':username' => $_SESSION['siteusername'],
37
+        ':reciever' => $name,
38 38
     ));
39 39
     header('Location: ' . $_SERVER['HTTP_REFERER']);
40 40
 }
Please login to merge, or discard this patch.
web/public/homepage.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 							</div>
57 57
 							<div class="guide">
58 58
 							<?php 
59
-								if(isset($_SESSION['siteusername'])) {
60
-								?>
59
+                                if(isset($_SESSION['siteusername'])) {
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
63 63
 								<img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" class="see-more-arrow" alt=""></a>        
@@ -203,16 +203,16 @@  discard block
 block discarded – undo
203 203
 							</p>
204 204
 							<ul>
205 205
 								<?php
206
-									$stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4");
207
-									$stmt->execute();
208
-									while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
209
-										$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
210
-										$video['duration'] = $__time_h->timestamp($video['duration']);
211
-										$video['views'] = $__video_h->fetch_video_views($video['rid']);
212
-										$video['author'] = htmlspecialchars($video['author']);		
213
-										$video['title'] = htmlspecialchars($video['title']);
214
-										$video['description'] = $__video_h->shorten_description($video['description'], 50);
215
-								?>
206
+                                    $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4");
207
+                                    $stmt->execute();
208
+                                    while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
209
+                                        $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
210
+                                        $video['duration'] = $__time_h->timestamp($video['duration']);
211
+                                        $video['views'] = $__video_h->fetch_video_views($video['rid']);
212
+                                        $video['author'] = htmlspecialchars($video['author']);		
213
+                                        $video['title'] = htmlspecialchars($video['title']);
214
+                                        $video['description'] = $__video_h->shorten_description($video['description'], 50);
215
+                                ?>
216 216
 								<li class="video-list-item "><a href="/watch?v=<?php echo $video['rid']; ?>" class="video-list-item-link yt-uix-sessionlink" data-sessionlink="ei=CNLr3rbS3rICFSwSIQodSW397Q%3D%3D&amp;feature=g-sptl%26cid%3Dinp-hs-ytg"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><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 $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span>
217 217
 									<button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="yuTBQ86r8o0" role="button"><span class="yt-uix-button-content">  <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later">
218 218
 									</span><img class="yt-uix-button-arrow" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""></button>
@@ -226,16 +226,16 @@  discard block
 block discarded – undo
226 226
 							</h3>
227 227
 							<ul>
228 228
 								<?php
229
-									$stmt = $__db->prepare("SELECT * FROM videos WHERE featured = 'v' ORDER BY id DESC LIMIT 4");
230
-									$stmt->execute();
231
-									while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
232
-										$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
233
-										$video['duration'] = $__time_h->timestamp($video['duration']);
234
-										$video['views'] = $__video_h->fetch_video_views($video['rid']);
235
-										$video['author'] = htmlspecialchars($video['author']);		
236
-										$video['title'] = htmlspecialchars($video['title']);
237
-										$video['description'] = $__video_h->shorten_description($video['description'], 50);
238
-								?>
229
+                                    $stmt = $__db->prepare("SELECT * FROM videos WHERE featured = 'v' ORDER BY id DESC LIMIT 4");
230
+                                    $stmt->execute();
231
+                                    while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
232
+                                        $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
233
+                                        $video['duration'] = $__time_h->timestamp($video['duration']);
234
+                                        $video['views'] = $__video_h->fetch_video_views($video['rid']);
235
+                                        $video['author'] = htmlspecialchars($video['author']);		
236
+                                        $video['title'] = htmlspecialchars($video['title']);
237
+                                        $video['description'] = $__video_h->shorten_description($video['description'], 50);
238
+                                ?>
239 239
 								<li class="video-list-item "><a href="/watch?v=<?php echo $video['rid']; ?>" class="video-list-item-link yt-uix-sessionlink" data-sessionlink="ei=CNLr3rbS3rICFSwSIQodSW397Q%3D%3D&amp;feature=g-sptl%26cid%3Dinp-hs-ytg"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><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 $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span>
240 240
 									<button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="yuTBQ86r8o0" role="button"><span class="yt-uix-button-content">  <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later">
241 241
 									</span><img class="yt-uix-button-arrow" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""></button>
@@ -259,16 +259,16 @@  discard block
 block discarded – undo
259 259
 									<div class="feed-page">
260 260
 										<ul>
261 261
 											<?php
262
-												$stmt = $__db->prepare("SELECT * FROM videos ORDER BY id DESC LIMIT 20");
263
-												$stmt->execute();
264
-												while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
265
-													$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
266
-													$video['duration'] = $__time_h->timestamp($video['duration']);
267
-													$video['views'] = $__video_h->fetch_video_views($video['rid']);
268
-													$video['author'] = htmlspecialchars($video['author']);		
269
-													$video['title'] = htmlspecialchars($video['title']);
270
-													$video['description'] = $__video_h->shorten_description($video['description'], 50);
271
-											?>
262
+                                                $stmt = $__db->prepare("SELECT * FROM videos ORDER BY id DESC LIMIT 20");
263
+                                                $stmt->execute();
264
+                                                while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
265
+                                                    $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
266
+                                                    $video['duration'] = $__time_h->timestamp($video['duration']);
267
+                                                    $video['views'] = $__video_h->fetch_video_views($video['rid']);
268
+                                                    $video['author'] = htmlspecialchars($video['author']);		
269
+                                                    $video['title'] = htmlspecialchars($video['title']);
270
+                                                    $video['description'] = $__video_h->shorten_description($video['description'], 50);
271
+                                            ?>
272 272
 											<li>
273 273
 												<div class="feed-item-container first " data-channel-key="UCR2A9ZNliJfgC66IvIpe-Zw">
274 274
 													<div class="feed-author-bubble-container">
Please login to merge, or discard this patch.
web/public/watch.php 1 patch
Indentation   +81 added lines, -81 removed lines patch added patch discarded remove patch
@@ -25,15 +25,15 @@  discard block
 block discarded – undo
25 25
         if($__user_h->if_cooldown($_SESSION['siteusername'])) { $error['message'] = "You are on a cooldown! Wait for a minute before posting another comment."; $error['status'] = true; }
26 26
 
27 27
         if(!isset($error['message'])) {
28
-			$text = $_POST['comment'];
28
+            $text = $_POST['comment'];
29 29
             $stmt = $__db->prepare("INSERT INTO comments (toid, author, comment) VALUES (:v, :username, :comment)");
30 30
             $stmt->bindParam(":v", $_GET['v']);
31
-			$stmt->bindParam(":username", $_SESSION['siteusername']);
32
-			$stmt->bindParam(":comment", $text);
31
+            $stmt->bindParam(":username", $_SESSION['siteusername']);
32
+            $stmt->bindParam(":comment", $text);
33 33
             $stmt->execute();
34 34
 
35
-			$__user_u->update_cooldown_time($_SESSION['siteusername'], "cooldown_comment");
36
-			$__user_i->send_message($_SESSION['siteusername'], "New comment", $_video['author'], "I commented \"" . $_POST['comment'] . "\" on your video!", $_video['rid'], "nt");
35
+            $__user_u->update_cooldown_time($_SESSION['siteusername'], "cooldown_comment");
36
+            $__user_i->send_message($_SESSION['siteusername'], "New comment", $_video['author'], "I commented \"" . $_POST['comment'] . "\" on your video!", $_video['rid'], "nt");
37 37
         }
38 38
     }
39 39
 ?>
@@ -65,29 +65,29 @@  discard block
 block discarded – undo
65 65
          if (window.yt.timing) {yt.timing.tick("ct");}    
66 66
       </script>
67 67
 		<?php
68
-			$_video['dislikes'] =  $__video_h->get_video_stars_level($_video['rid'], 1);
69
-			$_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2);
68
+            $_video['dislikes'] =  $__video_h->get_video_stars_level($_video['rid'], 1);
69
+            $_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2);
70 70
 
71
-			$_video['likes'] =     $__video_h->get_video_stars_level($_video['rid'], 4);
72
-			$_video['likes'] +=    $__video_h->get_video_stars_level($_video['rid'], 5);
71
+            $_video['likes'] =     $__video_h->get_video_stars_level($_video['rid'], 4);
72
+            $_video['likes'] +=    $__video_h->get_video_stars_level($_video['rid'], 5);
73 73
 
74
-			$_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false);
75
-			$_video['likes'] += $__video_h->get_video_likes($_video['rid'], true);
74
+            $_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false);
75
+            $_video['likes'] += $__video_h->get_video_likes($_video['rid'], true);
76 76
 
77
-			if($_video['likes'] == 0 && $_video['dislikes'] == 0) {
78
-				$_video['likeswidth'] = 50;
79
-				$_video['dislikeswidth'] = 50;
80
-			} else {
81
-				$_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100;
82
-				$_video['dislikeswidth'] = 100 - $_video['likeswidth'];
83
-			}
77
+            if($_video['likes'] == 0 && $_video['dislikes'] == 0) {
78
+                $_video['likeswidth'] = 50;
79
+                $_video['dislikeswidth'] = 50;
80
+            } else {
81
+                $_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100;
82
+                $_video['dislikeswidth'] = 100 - $_video['likeswidth'];
83
+            }
84 84
 
85
-			$_video['liked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], true);
86
-			$_video['disliked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], false);
87
-			$_video['author_videos'] = $__video_h->fetch_user_videos($_video['author']);
88
-			$_video['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_video['author']);
89
-			$_video['favorited'] = $__video_h->if_favorited(@$_SESSION['siteusername'], $_video['rid']);
90
-		?>
85
+            $_video['liked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], true);
86
+            $_video['disliked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], false);
87
+            $_video['author_videos'] = $__video_h->fetch_user_videos($_video['author']);
88
+            $_video['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_video['author']);
89
+            $_video['favorited'] = $__video_h->if_favorited(@$_SESSION['siteusername'], $_video['rid']);
90
+        ?>
91 91
 	</head>
92 92
 	<body id="" class="date-20120927 en_US ltr   ytg-old-clearfix guide-feed-v2 gecko gecko-15" dir="ltr">
93 93
 		<form name="logoutForm" method="POST" action="/logout">
@@ -306,21 +306,21 @@  discard block
 block discarded – undo
306 306
 													<hr><br>
307 307
 													<h3>Add to a Playlist</h3>
308 308
 													<?php
309
-														$stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY id DESC LIMIT 20");
310
-														$stmt->bindParam(":username", $_SESSION['siteusername']);
311
-														$stmt->execute();
312
-														while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { 
313
-															$buffer = json_decode($playlist['videos']);
314
-															@$rid = $buffer[0];
315
-															if(!empty($rid)) {
316
-																@$video = $__video_h->fetch_video_rid($rid);
317
-															} else {
318
-																$video['thumbnail'] = "";
319
-																$video['duration'] = 0;
320
-															}
309
+                                                        $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY id DESC LIMIT 20");
310
+                                                        $stmt->bindParam(":username", $_SESSION['siteusername']);
311
+                                                        $stmt->execute();
312
+                                                        while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { 
313
+                                                            $buffer = json_decode($playlist['videos']);
314
+                                                            @$rid = $buffer[0];
315
+                                                            if(!empty($rid)) {
316
+                                                                @$video = $__video_h->fetch_video_rid($rid);
317
+                                                            } else {
318
+                                                                $video['thumbnail'] = "";
319
+                                                                $video['duration'] = 0;
320
+                                                            }
321 321
 
322
-															$videos = count($buffer);
323
-													?>
322
+                                                            $videos = count($buffer);
323
+                                                    ?>
324 324
 														<a href="/get/add_to_playlist?id=<?php echo $_video['rid']; ?>&playlist=<?php echo $playlist['rid']; ?>">Add to <?php echo htmlspecialchars($playlist['title']); ?></a>
325 325
 													<?php } ?>
326 326
 												<?php } ?>
@@ -585,10 +585,10 @@  discard block
 block discarded – undo
585 585
 												</div>
586 586
 											</div>
587 587
 											<?php 
588
-												$stmt = $__db->prepare("SELECT * FROM video_response WHERE toid = :v ORDER BY id DESC LIMIT 4");
589
-												$stmt->bindParam(":v", $_GET['v']);
590
-												$stmt->execute();
591
-											?>
588
+                                                $stmt = $__db->prepare("SELECT * FROM video_response WHERE toid = :v ORDER BY id DESC LIMIT 4");
589
+                                                $stmt->bindParam(":v", $_GET['v']);
590
+                                                $stmt->execute();
591
+                                            ?>
592 592
 
593 593
 											<?php if($stmt->rowCount() != 0) { ?>
594 594
 												<div class="comments-section">
@@ -598,16 +598,16 @@  discard block
 block discarded – undo
598 598
 													<h4>Video Responses</h4>
599 599
 													<ul class="video-list">
600 600
 													<?php 
601
-														while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { 
602
-															if($__video_h->video_exists($video['video'])) { 
603
-																$video = $__video_h->fetch_video_rid($video['video']);
604
-																$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
605
-																$video['duration'] = $__time_h->timestamp($video['duration']);
606
-																$video['views'] = $__video_h->fetch_video_views($video['rid']);
607
-																$video['author'] = htmlspecialchars($video['author']);		
608
-																$video['title'] = htmlspecialchars($video['title']);
609
-																$video['description'] = $__video_h->shorten_description($video['description'], 50);
610
-													?>
601
+                                                        while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { 
602
+                                                            if($__video_h->video_exists($video['video'])) { 
603
+                                                                $video = $__video_h->fetch_video_rid($video['video']);
604
+                                                                $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
605
+                                                                $video['duration'] = $__time_h->timestamp($video['duration']);
606
+                                                                $video['views'] = $__video_h->fetch_video_views($video['rid']);
607
+                                                                $video['author'] = htmlspecialchars($video['author']);		
608
+                                                                $video['title'] = htmlspecialchars($video['title']);
609
+                                                                $video['description'] = $__video_h->shorten_description($video['description'], 50);
610
+                                                    ?>
611 611
 														<li class="video-list-item yt-tile-default">
612 612
 															<a href="/watch?v=<?php echo $video['rid']; ?>" class="related-video yt-uix-contextlink  yt-uix-sessionlink" data-sessionlink="<?php echo htmlspecialchars($_video['author']); ?>&amp;feature=watch_response"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="<?php echo $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span>
613 613
 															<button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="cjls0QsHOBE" role="button"><span class="yt-uix-button-content">  <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later">
@@ -689,31 +689,31 @@  discard block
 block discarded – undo
689 689
 												</div>
690 690
 												<ul class="comment-list" id="live_comments">
691 691
 														<?php
692
-														$results_per_page = 20;
692
+                                                        $results_per_page = 20;
693 693
 
694
-														$stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC");
695
-														$stmt->bindParam(":rid", $_video['rid']);
696
-														$stmt->execute();
694
+                                                        $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC");
695
+                                                        $stmt->bindParam(":rid", $_video['rid']);
696
+                                                        $stmt->execute();
697 697
 
698
-														$number_of_result = $stmt->rowCount();
699
-														$number_of_page = ceil ($number_of_result / $results_per_page);  
698
+                                                        $number_of_result = $stmt->rowCount();
699
+                                                        $number_of_page = ceil ($number_of_result / $results_per_page);  
700 700
 
701
-														if (!isset ($_GET['page']) ) {  
702
-															$page = 1;  
703
-														} else {  
704
-															$page = (int)$_GET['page'];  
705
-														}  
701
+                                                        if (!isset ($_GET['page']) ) {  
702
+                                                            $page = 1;  
703
+                                                        } else {  
704
+                                                            $page = (int)$_GET['page'];  
705
+                                                        }  
706 706
 
707
-														$page_first_result = ($page - 1) * $results_per_page;  
707
+                                                        $page_first_result = ($page - 1) * $results_per_page;  
708 708
 
709
-														$stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper");
710
-														$stmt->bindParam(":rid", $_video['rid']);
711
-														$stmt->bindParam(":pfirst", $page_first_result);
712
-														$stmt->bindParam(":pper", $results_per_page);
713
-														$stmt->execute();
709
+                                                        $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper");
710
+                                                        $stmt->bindParam(":rid", $_video['rid']);
711
+                                                        $stmt->bindParam(":pfirst", $page_first_result);
712
+                                                        $stmt->bindParam(":pper", $results_per_page);
713
+                                                        $stmt->execute();
714 714
 
715
-														while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { 
716
-													?>
715
+                                                        while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { 
716
+                                                    ?>
717 717
 
718 718
 													<li class="comment yt-tile-default " data-author-viewing="" data-author-id="-uD01K8FQTeOSS5sniRFzQ" data-id="HdQrMeklJ_5hd_uPDRcvtdaMk2pMVS8d9sufcfiGx0U" data-score="0">
719 719
 														<div class="comment-body">
@@ -792,16 +792,16 @@  discard block
 block discarded – undo
792 792
 											<ul id="watch-related" class="video-list">
793 793
 												<div id="ppv-container" class="hid"></div>
794 794
 												<?php
795
-													$stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20");
796
-													$stmt->execute();
797
-													while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
798
-														$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
799
-														$video['duration'] = $__time_h->timestamp($video['duration']);
800
-														$video['views'] = $__video_h->fetch_video_views($video['rid']);
801
-														$video['author'] = htmlspecialchars($video['author']);		
802
-														$video['title'] = htmlspecialchars($video['title']);
803
-														$video['description'] = $__video_h->shorten_description($video['description'], 50);
804
-												?>
795
+                                                    $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20");
796
+                                                    $stmt->execute();
797
+                                                    while($video = $stmt->fetch(PDO::FETCH_ASSOC)) {	
798
+                                                        $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
799
+                                                        $video['duration'] = $__time_h->timestamp($video['duration']);
800
+                                                        $video['views'] = $__video_h->fetch_video_views($video['rid']);
801
+                                                        $video['author'] = htmlspecialchars($video['author']);		
802
+                                                        $video['title'] = htmlspecialchars($video['title']);
803
+                                                        $video['description'] = $__video_h->shorten_description($video['description'], 50);
804
+                                                ?>
805 805
 												<li class="video-list-item"><a href="/watch?v=<?php echo $video['rid']; ?>" class="related-video yt-uix-contextlink  yt-uix-sessionlink" data-sessionlink="ved=CAIQzRooAA%3D%3D&amp;<?php echo htmlspecialchars($_video['author']); ?>&amp;feature=relmfu"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="<?php echo $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span>
806 806
 													<button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="gyAaIKF6tSQ" role="button"><span class="yt-uix-button-content">  <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later">
807 807
 													</span><img class="yt-uix-button-arrow" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""></button>
Please login to merge, or discard this patch.
web/public/get/unfavorite.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
 
27 27
 $stmt = $__db->prepare("DELETE FROM favorite_video WHERE sender = :sender AND reciever = :reciever");
28 28
 $stmt->execute(array(
29
-  ':sender' => $_SESSION['siteusername'],
30
-  ':reciever' => $name,
29
+    ':sender' => $_SESSION['siteusername'],
30
+    ':reciever' => $name,
31 31
 ));
32 32
 
33 33
 header('Location: ' . $_SERVER['HTTP_REFERER']);
Please login to merge, or discard this patch.
web/public/get/unsubscribe.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 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
-      ':sender' => $request->sender,
31
-      ':reciever' => $request->name,
30
+        ':sender' => $request->sender,
31
+        ':reciever' => $request->name,
32 32
     ));
33 33
 
34 34
     header('Location: ' . $_SERVER['HTTP_REFERER']);
Please login to merge, or discard this patch.
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.