@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | <?php |
14 | 14 | $name = $_GET['v']; |
15 | 15 | |
16 | -if(!isset($_SESSION['siteusername']) || !isset($_GET['v'])) { |
|
16 | +if (!isset($_SESSION['siteusername']) || !isset($_GET['v'])) { |
|
17 | 17 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
18 | 18 | } |
19 | 19 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
22 | 22 | $stmt->bindParam(":reciever", $name); |
23 | 23 | $stmt->execute(); |
24 | -while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
24 | +while ($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
25 | 25 | $stmt = $__db->prepare("DELETE FROM likes WHERE sender = :username AND reciever = :reciever"); |
26 | 26 | $stmt->execute(array( |
27 | 27 | ':username' => $_SESSION['siteusername'], |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
35 | 35 | $stmt->bindParam(":reciever", $name); |
36 | 36 | $stmt->execute(); |
37 | -while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
37 | +while ($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
38 | 38 | $stmt = $__db->prepare("DELETE FROM likes WHERE sender = :username AND reciever = :reciever"); |
39 | 39 | $stmt->execute(array( |
40 | 40 | ':username' => $_SESSION['siteusername'], |
@@ -13,7 +13,7 @@ |
||
13 | 13 | <?php $video = $__video_h->fetch_video_rid($_GET['v']); ?> |
14 | 14 | <?php |
15 | 15 | |
16 | -if($video['author'] == $_SESSION['siteusername']) { |
|
16 | +if ($video['author'] == $_SESSION['siteusername']) { |
|
17 | 17 | $stmt = $__db->prepare("DELETE FROM videos WHERE rid=:rid AND author=:author"); |
18 | 18 | $stmt->execute(array( |
19 | 19 | ':author' => $video['author'], |
@@ -12,7 +12,7 @@ |
||
12 | 12 | <?php $__time_h = new time_helper(); ?> |
13 | 13 | <?php $playlist = $__video_h->fetch_playlist_rid($_GET['id']); ?> |
14 | 14 | <?php |
15 | -if($playlist['author'] == $_SESSION['siteusername']) { |
|
15 | +if ($playlist['author'] == $_SESSION['siteusername']) { |
|
16 | 16 | $stmt = $__db->prepare("DELETE FROM playlists WHERE rid=:rid AND author=:author"); |
17 | 17 | $stmt->execute(array( |
18 | 18 | ':author' => $_SESSION['siteusername'], |
@@ -39,7 +39,7 @@ |
||
39 | 39 | $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY id DESC LIMIT 20"); |
40 | 40 | $stmt->bindParam(":username", $_video['author']); |
41 | 41 | $stmt->execute(); |
42 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
42 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
43 | 43 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
44 | 44 | $video['duration'] = $__time_h->timestamp($video['duration']); |
45 | 45 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -10,22 +10,22 @@ |
||
10 | 10 | <?php $__user_u = new user_update($__db); ?> |
11 | 11 | <?php $__db_h = new db_helper(); ?> |
12 | 12 | <?php $__time_h = new time_helper(); ?> |
13 | -<?php if(!$__video_h->video_exists($_GET['v'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
13 | +<?php if (!$__video_h->video_exists($_GET['v'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
14 | 14 | <?php $_video = $__video_h->fetch_video_rid($_GET['v']); ?> |
15 | 15 | <?php $_video['comments'] = $__video_h->get_comments_from_video($_video['rid']); ?> |
16 | 16 | <?php |
17 | - if($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
17 | + if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
18 | 18 | $error = array(); |
19 | 19 | $request = (object) [ |
20 | 20 | "status" => "success" |
21 | 21 | ]; |
22 | 22 | |
23 | - if(!isset($_SESSION['siteusername'])){ $error['message'] = "you are not logged in"; $error['status'] = true; } |
|
24 | - if(!$_POST['comment']){ $error['message'] = "your comment cannot be blank"; $error['status'] = true; } |
|
25 | - if(strlen($_POST['comment']) > 1000){ $error['message'] = "your comment must be shorter than 1000 characters"; $error['status'] = true; } |
|
26 | - 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; } |
|
23 | + if (!isset($_SESSION['siteusername'])) { $error['message'] = "you are not logged in"; $error['status'] = true; } |
|
24 | + if (!$_POST['comment']) { $error['message'] = "your comment cannot be blank"; $error['status'] = true; } |
|
25 | + if (strlen($_POST['comment']) > 1000) { $error['message'] = "your comment must be shorter than 1000 characters"; $error['status'] = true; } |
|
26 | + 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; } |
|
27 | 27 | |
28 | - if(!isset($error['message'])) { |
|
28 | + if (!isset($error['message'])) { |
|
29 | 29 | $text = $_POST['comment']; |
30 | 30 | $stmt = $__db->prepare("INSERT INTO comments (toid, author, comment) VALUES (:v, :username, :comment)"); |
31 | 31 | $stmt->bindParam(":v", $_GET['v']); |
@@ -12,18 +12,18 @@ discard block |
||
12 | 12 | <?php $__user_u = new user_update($__db); ?> |
13 | 13 | <?php $__db_h = new db_helper(); ?> |
14 | 14 | <?php $__time_h = new time_helper(); ?> |
15 | -<?php if(!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
15 | +<?php if (!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
16 | 16 | <?php |
17 | - if($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
17 | + if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
18 | 18 | $error = array(); |
19 | 19 | |
20 | - if(!isset($_SESSION['siteusername'])){ $error['message'] = "You are not logged in"; $error['status'] = true; } |
|
21 | - if(!$_POST['comment']){ $error['message'] = "Your description cannot be blank"; $error['status'] = true; } |
|
22 | - if(empty(trim($_POST['title']))){ $error['message'] = "Your title cannot be blank"; $error['status'] = true; } |
|
23 | - if(strlen($_POST['comment']) > 1000){ $error['message'] = "Your description must be shorter than 1000 characters"; $error['status'] = true; } |
|
24 | - if($__user_h->if_cooldown($_SESSION['siteusername'])) { $error['message'] = "You are on a cooldown! Wait for a minute before making a playlist."; $error['status'] = true; } |
|
20 | + if (!isset($_SESSION['siteusername'])) { $error['message'] = "You are not logged in"; $error['status'] = true; } |
|
21 | + if (!$_POST['comment']) { $error['message'] = "Your description cannot be blank"; $error['status'] = true; } |
|
22 | + if (empty(trim($_POST['title']))) { $error['message'] = "Your title cannot be blank"; $error['status'] = true; } |
|
23 | + if (strlen($_POST['comment']) > 1000) { $error['message'] = "Your description must be shorter than 1000 characters"; $error['status'] = true; } |
|
24 | + if ($__user_h->if_cooldown($_SESSION['siteusername'])) { $error['message'] = "You are on a cooldown! Wait for a minute before making a playlist."; $error['status'] = true; } |
|
25 | 25 | |
26 | - if(!isset($error['message'])) { |
|
26 | + if (!isset($error['message'])) { |
|
27 | 27 | $characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'; |
28 | 28 | $result = ''; |
29 | 29 | for ($i = 0; $i < 11; $i++) |
@@ -192,15 +192,15 @@ discard block |
||
192 | 192 | $stmt->execute(); |
193 | 193 | |
194 | 194 | $number_of_result = $stmt->rowCount(); |
195 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
195 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
196 | 196 | |
197 | - if (!isset ($_GET['page']) ) { |
|
197 | + if (!isset ($_GET['page'])) { |
|
198 | 198 | $page = 1; |
199 | 199 | } else { |
200 | - $page = (int)$_GET['page']; |
|
200 | + $page = (int) $_GET['page']; |
|
201 | 201 | } |
202 | 202 | |
203 | - $page_first_result = ($page - 1) * $results_per_page; |
|
203 | + $page_first_result = ($page - 1)*$results_per_page; |
|
204 | 204 | ?> |
205 | 205 | <?php |
206 | 206 | $stmt6 = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
@@ -245,10 +245,10 @@ discard block |
||
245 | 245 | </tr> |
246 | 246 | |
247 | 247 | <?php |
248 | - while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
248 | + while ($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
249 | 249 | $playlist['videos'] = json_decode($playlist['videos']); |
250 | - if($__video_h->video_exists(@$playlist['videos'][0])) { |
|
251 | - if(count($playlist['videos']) != 0) { |
|
250 | + if ($__video_h->video_exists(@$playlist['videos'][0])) { |
|
251 | + if (count($playlist['videos']) != 0) { |
|
252 | 252 | $video = $__video_h->fetch_video_rid($playlist['videos'][0]); |
253 | 253 | $video['video_responses'] = $__video_h->get_video_responses($video['rid']); |
254 | 254 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | </div> |
331 | 331 | </center> |
332 | 332 | |
333 | - <?php for($page = 1; $page<= $number_of_page; $page++) { ?> |
|
333 | + <?php for ($page = 1; $page <= $number_of_page; $page++) { ?> |
|
334 | 334 | <button class="yt-uix-button yt-uix-button-default" onclick="ajax_fetch_videomanager(<?php echo $page; ?>)"><?php echo $page; ?></button> |
335 | 335 | <?php } ?> |
336 | 336 | |
@@ -376,7 +376,7 @@ discard block |
||
376 | 376 | </script> |
377 | 377 | |
378 | 378 | <?php |
379 | - if($stmt6->rowCount() == 0) { echo " |
|
379 | + if ($stmt6->rowCount() == 0) { echo " |
|
380 | 380 | <br>Welcome to your playlists! You can make collections of videos for you to share with others.<br> |
381 | 381 | "; |
382 | 382 | } ?> |
@@ -30,9 +30,9 @@ discard block |
||
30 | 30 | <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/s/classes/user_update.php"); ?> |
31 | 31 | <?php $__video_h = new video_helper($__db); ?> |
32 | 32 | <?php $__db_h = new db_helper(); ?> |
33 | -<?php if(!$__video_h->video_exists($_GET['video_id'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
33 | +<?php if (!$__video_h->video_exists($_GET['video_id'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
34 | 34 | <?php $_video = $__video_h->fetch_video_rid($_GET['video_id']); ?> |
35 | -<?php @$_video['fmtPath'] = "/dynamic/videos/".$_video['filename']; ?> |
|
35 | +<?php @$_video['fmtPath'] = "/dynamic/videos/" . $_video['filename']; ?> |
|
36 | 36 | <?php |
37 | 37 | |
38 | 38 | // these are all the videos, with their settings, and formats |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | |
50 | 50 | $count = 0; |
51 | 51 | $url_encoded_fmt_stream_map; |
52 | -foreach($fmt_stream_map as $stream) { |
|
53 | - if($count == 0) |
|
52 | +foreach ($fmt_stream_map as $stream) { |
|
53 | + if ($count == 0) |
|
54 | 54 | $url_encoded_fmt_stream_map = http_build_query($stream); |
55 | 55 | else |
56 | 56 | $url_encoded_fmt_stream_map = $url_encoded_fmt_stream_map . "," . http_build_query($stream); |
@@ -10,19 +10,19 @@ discard block |
||
10 | 10 | <?php $__user_u = new user_update($__db); ?> |
11 | 11 | <?php $__db_h = new db_helper(); ?> |
12 | 12 | <?php $__time_h = new time_helper(); ?> |
13 | -<?php if(!$__video_h->video_exists($_GET['v'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
13 | +<?php if (!$__video_h->video_exists($_GET['v'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
14 | 14 | <?php $_video = $__video_h->fetch_video_rid($_GET['v']); ?> |
15 | 15 | <?php $_video['comments'] = $__video_h->get_comments_from_video($_video['rid']); ?> |
16 | 16 | <?php |
17 | - if($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
17 | + if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
18 | 18 | $error = array(); |
19 | 19 | |
20 | - if(!isset($_SESSION['siteusername'])){ $error['message'] = "you are not logged in"; $error['status'] = true; } |
|
21 | - if(!$_POST['comment']){ $error['message'] = "your comment cannot be blank"; $error['status'] = true; } |
|
22 | - if(strlen($_POST['comment']) > 1000){ $error['message'] = "your comment must be shorter than 1000 characters"; $error['status'] = true; } |
|
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; } |
|
20 | + if (!isset($_SESSION['siteusername'])) { $error['message'] = "you are not logged in"; $error['status'] = true; } |
|
21 | + if (!$_POST['comment']) { $error['message'] = "your comment cannot be blank"; $error['status'] = true; } |
|
22 | + if (strlen($_POST['comment']) > 1000) { $error['message'] = "your comment must be shorter than 1000 characters"; $error['status'] = true; } |
|
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 | - if(!isset($error['message'])) { |
|
25 | + if (!isset($error['message'])) { |
|
26 | 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']); |
@@ -53,20 +53,20 @@ discard block |
||
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); |
|
56 | + $_video['dislikes'] = $__video_h->get_video_stars_level($_video['rid'], 1); |
|
57 | 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 | 62 | $_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false); |
63 | 63 | $_video['likes'] += $__video_h->get_video_likes($_video['rid'], true); |
64 | 64 | |
65 | - if($_video['likes'] == 0 && $_video['dislikes'] == 0) { |
|
65 | + if ($_video['likes'] == 0 && $_video['dislikes'] == 0) { |
|
66 | 66 | $_video['likeswidth'] = 50; |
67 | 67 | $_video['dislikeswidth'] = 50; |
68 | 68 | } else { |
69 | - $_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100; |
|
69 | + $_video['likeswidth'] = $_video['likes']/($_video['likes'] + $_video['dislikes'])*100; |
|
70 | 70 | $_video['dislikeswidth'] = 100 - $_video['likeswidth']; |
71 | 71 | } |
72 | 72 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | </div> |
100 | 100 | <div id="instream_google_companion_ad_div"></div> |
101 | 101 | </div> |
102 | - <?php if(@$_SESSION['siteusername'] == $_video['author']) { ?> |
|
102 | + <?php if (@$_SESSION['siteusername'] == $_video['author']) { ?> |
|
103 | 103 | <div id="watch-owner-container"> |
104 | 104 | <div id="masthead-subnav" class="yt-nav yt-nav-dark "> |
105 | 105 | <ul class="yt-nav-aside"> |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | title="" |
135 | 135 | id="subscribe-button" |
136 | 136 | type="button" |
137 | - class="<?php if($_video['subscribed']) { echo "subscribed "; } ?>yt-subscription-button yt-uix-button yt-uix-button-subscription yt-uix-tooltip" |
|
137 | + class="<?php if ($_video['subscribed']) { echo "subscribed "; } ?>yt-subscription-button yt-uix-button yt-uix-button-subscription yt-uix-tooltip" |
|
138 | 138 | role="button"> |
139 | 139 | <span class="yt-uix-button-icon-wrapper"> |
140 | 140 | <img class="yt-uix-button-icon yt-uix-button-icon-subscribe" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""> |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | <button onclick=";window.location.href=this.getAttribute('href');return false;" |
227 | 227 | title="I like this" |
228 | 228 | type="button" |
229 | - class="start <?php if($_video['liked']) { echo "liked "; } ?>yt-uix-tooltip-reverse yt-uix-button yt-uix-button-default yt-uix-tooltip" |
|
229 | + class="start <?php if ($_video['liked']) { echo "liked "; } ?>yt-uix-tooltip-reverse yt-uix-button yt-uix-button-default yt-uix-tooltip" |
|
230 | 230 | id="watch-like" |
231 | 231 | href="/get/like_video?v=<?php echo $_video['rid']; ?>" |
232 | 232 | role="button"><span class="yt-uix-button-icon-wrapper"> |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | type="button" |
241 | 241 | style="margin-left: -2px;" |
242 | 242 | href="/get/dislike_video?v=<?php echo $_video['rid']; ?>" |
243 | - class="end yt-uix-tooltip-reverse <?php if($_video['disliked']) { echo "unliked "; } ?> yt-uix-button yt-uix-button-default yt-uix-tooltip yt-uix-button-empty" |
|
243 | + class="end yt-uix-tooltip-reverse <?php if ($_video['disliked']) { echo "unliked "; } ?> yt-uix-button yt-uix-button-default yt-uix-tooltip yt-uix-button-empty" |
|
244 | 244 | id="watch-unlike" |
245 | 245 | role="button"> |
246 | 246 | <span class="yt-uix-button-icon-wrapper"> |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | $stmt->execute(); |
366 | 366 | ?> |
367 | 367 | |
368 | - <?php if($stmt->rowCount() != 0) { ?> |
|
368 | + <?php if ($stmt->rowCount() != 0) { ?> |
|
369 | 369 | <div class="comments-section"> |
370 | 370 | <a class="comments-section-see-all" href="/video_response_view_all?v=<?php echo htmlspecialchars($_video['rid']); ?>"> |
371 | 371 | see all |
@@ -373,8 +373,8 @@ discard block |
||
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'])) { |
|
376 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
377 | + if ($__video_h->video_exists($video['video'])) { |
|
378 | 378 | $video = $__video_h->fetch_video_rid($video['video']); |
379 | 379 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
380 | 380 | $video['duration'] = $__time_h->timestamp($video['duration']); |
@@ -405,19 +405,19 @@ discard block |
||
405 | 405 | </h4> |
406 | 406 | </div> |
407 | 407 | </div> |
408 | - <?php if(!isset($_SESSION['siteusername'])) { ?> |
|
408 | + <?php if (!isset($_SESSION['siteusername'])) { ?> |
|
409 | 409 | <div class="comments-post-container clearfix"> |
410 | 410 | <div class="comments-post-alert"> |
411 | 411 | <a href="/sign_in">Sign In</a> or <a href="/sign_up">Sign Up</a><span class="comments-post-form-rollover-text"> now to post a comment!</span> |
412 | 412 | </div> |
413 | 413 | </div> |
414 | - <?php } else if($_video['commenting'] == "d") { ?> |
|
414 | + <?php } else if ($_video['commenting'] == "d") { ?> |
|
415 | 415 | <div class="comments-post-container clearfix"> |
416 | 416 | <div class="comments-post-alert"> |
417 | 417 | This video has comemnting disabled! |
418 | 418 | </div> |
419 | 419 | </div> |
420 | - <?php } else if($__user_h->if_blocked($_video['author'], $_SESSION['siteusername'])) { ?> |
|
420 | + <?php } else if ($__user_h->if_blocked($_video['author'], $_SESSION['siteusername'])) { ?> |
|
421 | 421 | <div class="comments-post-container clearfix"> |
422 | 422 | <div class="comments-post-alert"> |
423 | 423 | This user has blocked you! |
@@ -471,15 +471,15 @@ discard block |
||
471 | 471 | $stmt->execute(); |
472 | 472 | |
473 | 473 | $number_of_result = $stmt->rowCount(); |
474 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
474 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
475 | 475 | |
476 | - if (!isset ($_GET['page']) ) { |
|
476 | + if (!isset ($_GET['page'])) { |
|
477 | 477 | $page = 1; |
478 | 478 | } else { |
479 | - $page = (int)$_GET['page']; |
|
479 | + $page = (int) $_GET['page']; |
|
480 | 480 | } |
481 | 481 | |
482 | - $page_first_result = ($page - 1) * $results_per_page; |
|
482 | + $page_first_result = ($page - 1)*$results_per_page; |
|
483 | 483 | |
484 | 484 | $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper"); |
485 | 485 | $stmt->bindParam(":rid", $_video['rid']); |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | $stmt->bindParam(":pper", $results_per_page); |
488 | 488 | $stmt->execute(); |
489 | 489 | |
490 | - while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
490 | + while ($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
491 | 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"> |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | <?php |
570 | 570 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20"); |
571 | 571 | $stmt->execute(); |
572 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
572 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
573 | 573 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
574 | 574 | $video['duration'] = $__time_h->timestamp($video['duration']); |
575 | 575 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -39,8 +39,8 @@ |
||
39 | 39 | ?> |
40 | 40 | <div id="browse-side-column" class="ytg-2col ytg-last"> |
41 | 41 | <ol class="navigation-menu"> |
42 | - <?php foreach($__tabs as $_tab) { |
|
43 | - if($_SERVER['REQUEST_URI'] != $_tab->url) |
|
42 | + <?php foreach ($__tabs as $_tab) { |
|
43 | + if ($_SERVER['REQUEST_URI'] != $_tab->url) |
|
44 | 44 | $_tab->selected = true; |
45 | 45 | ?> |
46 | 46 | <li class="menu-item"> |