@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | <?php $__db_h = new db_helper(); ?> |
13 | 13 | <?php $__time_h = new time_helper(); ?> |
14 | 14 | <?php |
15 | - if(isset($_SESSION['siteusername'])) |
|
16 | - $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']); |
|
15 | + if(isset($_SESSION['siteusername'])) |
|
16 | + $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']); |
|
17 | 17 | |
18 | 18 | if(!$__user_h->user_exists($_GET['n'])) |
19 | 19 | header("Location: /?userdoesntexist"); |
@@ -26,21 +26,21 @@ discard block |
||
26 | 26 | return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars. |
27 | 27 | } |
28 | 28 | |
29 | - function addhttp($url) { |
|
30 | - if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { |
|
31 | - $url = "http://" . $url; |
|
32 | - } |
|
33 | - return $url; |
|
34 | - } |
|
29 | + function addhttp($url) { |
|
30 | + if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { |
|
31 | + $url = "http://" . $url; |
|
32 | + } |
|
33 | + return $url; |
|
34 | + } |
|
35 | 35 | |
36 | 36 | function check_valid_colorhex($colorCode) { |
37 | 37 | // If user accidentally passed along the # sign, strip it off |
38 | 38 | $colorCode = ltrim($colorCode, '#'); |
39 | 39 | |
40 | 40 | if ( |
41 | - ctype_xdigit($colorCode) && |
|
41 | + ctype_xdigit($colorCode) && |
|
42 | 42 | (strlen($colorCode) == 6 || strlen($colorCode) == 3)) |
43 | - return true; |
|
43 | + return true; |
|
44 | 44 | |
45 | 45 | else return false; |
46 | 46 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $_user['2009_bgcolor'] = substr($_user['2009_bgcolor'], 0, 7); |
66 | 66 | |
67 | 67 | $_user['genre'] = strtolower($_user['genre']); |
68 | - $_user['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_user['username']); |
|
68 | + $_user['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_user['username']); |
|
69 | 69 | |
70 | 70 | if(!check_valid_colorhex($_user['primary_color']) && strlen($_user['primary_color']) != 6) { $_user['primary_color'] = ""; } |
71 | 71 | if(!check_valid_colorhex($_user['secondary_color']) && strlen($_user['secondary_color']) != 6) { $_user['secondary_color'] = ""; } |
@@ -74,8 +74,8 @@ discard block |
||
74 | 74 | if(!check_valid_colorhex($_user['primary_color_text']) && strlen($_user['primary_color_text']) != 6) { $_user['primary_color_text'] = ""; } |
75 | 75 | if(!check_valid_colorhex($_user['2009_bgcolor']) && strlen($_user['2009_bgcolor']) != 6) { $_user['2009_bgcolor'] = ""; } |
76 | 76 | |
77 | - if(isset($_SESSION['siteusername'])) |
|
78 | - $__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']); |
|
77 | + if(isset($_SESSION['siteusername'])) |
|
78 | + $__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']); |
|
79 | 79 | |
80 | 80 | if($_SERVER['REQUEST_METHOD'] == 'POST') { |
81 | 81 | $error = array(); |
@@ -89,11 +89,11 @@ discard block |
||
89 | 89 | //if(ifBlocked(@$_SESSION['siteusername'], $user['username'], $__db)) { $error = "This user has blocked you!"; $error['status'] = true; } |
90 | 90 | |
91 | 91 | if(!isset($error['message'])) { |
92 | - $text = $_POST['comment']; |
|
92 | + $text = $_POST['comment']; |
|
93 | 93 | $stmt = $__db->prepare("INSERT INTO profile_comments (toid, author, comment) VALUES (:id, :username, :comment)"); |
94 | - $stmt->bindParam(":id", $_user['username']); |
|
95 | - $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
96 | - $stmt->bindParam(":comment", $text); |
|
94 | + $stmt->bindParam(":id", $_user['username']); |
|
95 | + $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
96 | + $stmt->bindParam(":comment", $text); |
|
97 | 97 | $stmt->execute(); |
98 | 98 | |
99 | 99 | $_user_update_utils->update_comment_cooldown_time($_SESSION['siteusername']); |
@@ -105,10 +105,10 @@ discard block |
||
105 | 105 | } |
106 | 106 | ?> |
107 | 107 | <?php |
108 | - $__server->page_embeds->page_title = "SubRocks - " . htmlspecialchars($_user['username']); |
|
109 | - $__server->page_embeds->page_description = htmlspecialchars($_user['bio']); |
|
110 | - $__server->page_embeds->page_image = "/dynamic/pfp/" . htmlspecialchars($_user['pfp']); |
|
111 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
108 | + $__server->page_embeds->page_title = "SubRocks - " . htmlspecialchars($_user['username']); |
|
109 | + $__server->page_embeds->page_description = htmlspecialchars($_user['bio']); |
|
110 | + $__server->page_embeds->page_image = "/dynamic/pfp/" . htmlspecialchars($_user['pfp']); |
|
111 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
112 | 112 | ?> |
113 | 113 | <!DOCTYPE html> |
114 | 114 | <html dir="ltr" xmlns:og="http://opengraphprotocol.org/schema/" lang="en"> |
@@ -151,9 +151,9 @@ discard block |
||
151 | 151 | <div class="channel_customization"><?php require($_SERVER['DOCUMENT_ROOT'] . "/s/mod/channel_customization.php"); ?></div> |
152 | 152 | <?php } ?> |
153 | 153 | <?php |
154 | - if(empty(trim($_user['bio']))) |
|
155 | - $_user['bio'] = "This user has no description."; |
|
156 | - ?> |
|
154 | + if(empty(trim($_user['bio']))) |
|
155 | + $_user['bio'] = "This user has no description."; |
|
156 | + ?> |
|
157 | 157 | <div id="content"> |
158 | 158 | <div class="subscription-menu-expandable subscription-menu-expandable-channels3 yt-rounded ytg-wide hid"> |
159 | 159 | <div class="content" id="recommended-channels-list"></div> |
@@ -482,9 +482,9 @@ discard block |
||
482 | 482 | <h2>Featured Channels</h2> |
483 | 483 | <ul class="channel-summary-list "> |
484 | 484 | <?php |
485 | - foreach($_user['featured_channels'] as $user) { |
|
486 | - if($__user_h->user_exists($user)) { |
|
487 | - ?> |
|
485 | + foreach($_user['featured_channels'] as $user) { |
|
486 | + if($__user_h->user_exists($user)) { |
|
487 | + ?> |
|
488 | 488 | <li class="yt-tile-visible yt-uix-tile"> |
489 | 489 | <div class="channel-summary clearfix channel-summary-compact"> |
490 | 490 | <div class="channel-summary-thumb"> |
@@ -508,19 +508,19 @@ discard block |
||
508 | 508 | </div> |
509 | 509 | |
510 | 510 | <?php |
511 | - $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10"); |
|
512 | - $stmt->bindParam(":search", $_user['username']); |
|
513 | - $stmt->execute(); |
|
511 | + $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10"); |
|
512 | + $stmt->bindParam(":search", $_user['username']); |
|
513 | + $stmt->execute(); |
|
514 | 514 | |
515 | - if($stmt->rowCount() != 0) { |
|
516 | - ?> |
|
515 | + if($stmt->rowCount() != 0) { |
|
516 | + ?> |
|
517 | 517 | <div class="playlists-narrow channel-module yt-uix-c3-module-container"> |
518 | 518 | <div class="module-view gh-featured"> |
519 | 519 | <h2>Featured Playlists</h2> |
520 | 520 | <?php |
521 | - while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
522 | - $playlist['videos'] = json_decode($playlist['videos']); |
|
523 | - ?> |
|
521 | + while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
522 | + $playlist['videos'] = json_decode($playlist['videos']); |
|
523 | + ?> |
|
524 | 524 | <div class="playlist yt-tile-visible yt-uix-tile"> |
525 | 525 | <a href="/view_playlist?v=<?php echo $playlist['rid']; ?>"> |
526 | 526 | <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"> |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | <?php $__db_h = new db_helper(); ?> |
13 | 13 | <?php $__time_h = new time_helper(); ?> |
14 | 14 | <?php |
15 | - if(isset($_SESSION['siteusername'])) |
|
16 | - $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']); |
|
15 | + if(isset($_SESSION['siteusername'])) |
|
16 | + $_user_hp = $__user_h->fetch_user_username($_SESSION['siteusername']); |
|
17 | 17 | |
18 | 18 | if(!$__user_h->user_exists($_GET['n'])) |
19 | 19 | header("Location: /?userdoesntexist"); |
@@ -26,21 +26,21 @@ discard block |
||
26 | 26 | return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars. |
27 | 27 | } |
28 | 28 | |
29 | - function addhttp($url) { |
|
30 | - if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { |
|
31 | - $url = "http://" . $url; |
|
32 | - } |
|
33 | - return $url; |
|
34 | - } |
|
29 | + function addhttp($url) { |
|
30 | + if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { |
|
31 | + $url = "http://" . $url; |
|
32 | + } |
|
33 | + return $url; |
|
34 | + } |
|
35 | 35 | |
36 | 36 | function check_valid_colorhex($colorCode) { |
37 | 37 | // If user accidentally passed along the # sign, strip it off |
38 | 38 | $colorCode = ltrim($colorCode, '#'); |
39 | 39 | |
40 | 40 | if ( |
41 | - ctype_xdigit($colorCode) && |
|
41 | + ctype_xdigit($colorCode) && |
|
42 | 42 | (strlen($colorCode) == 6 || strlen($colorCode) == 3)) |
43 | - return true; |
|
43 | + return true; |
|
44 | 44 | |
45 | 45 | else return false; |
46 | 46 | } |
@@ -75,8 +75,8 @@ discard block |
||
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 |
||
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']); |
@@ -106,10 +106,10 @@ discard block |
||
106 | 106 | } |
107 | 107 | ?> |
108 | 108 | <?php |
109 | - $__server->page_embeds->page_title = "SubRocks - " . htmlspecialchars($_user['username']); |
|
110 | - $__server->page_embeds->page_description = htmlspecialchars($_user['bio']); |
|
111 | - $__server->page_embeds->page_image = "/dynamic/pfp/" . htmlspecialchars($_user['pfp']); |
|
112 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
109 | + $__server->page_embeds->page_title = "SubRocks - " . htmlspecialchars($_user['username']); |
|
110 | + $__server->page_embeds->page_description = htmlspecialchars($_user['bio']); |
|
111 | + $__server->page_embeds->page_image = "/dynamic/pfp/" . htmlspecialchars($_user['pfp']); |
|
112 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
113 | 113 | ?> |
114 | 114 | <!DOCTYPE html> |
115 | 115 | <html dir="ltr" xmlns:og="http://opengraphprotocol.org/schema/" lang="en"> |
@@ -299,17 +299,17 @@ discard block |
||
299 | 299 | <div class="channel-filtered-content"> |
300 | 300 | <ol class="channel-videos-list"> |
301 | 301 | <?php |
302 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY id DESC"); |
|
303 | - $stmt->bindParam(":username", $_user['username']); |
|
304 | - $stmt->execute(); |
|
305 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
306 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
307 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
308 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
309 | - $video['author'] = htmlspecialchars($video['author']); |
|
310 | - $video['title'] = htmlspecialchars($video['title']); |
|
311 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
312 | - ?> |
|
302 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY id DESC"); |
|
303 | + $stmt->bindParam(":username", $_user['username']); |
|
304 | + $stmt->execute(); |
|
305 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
306 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
307 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
308 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
309 | + $video['author'] = htmlspecialchars($video['author']); |
|
310 | + $video['title'] = htmlspecialchars($video['title']); |
|
311 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
312 | + ?> |
|
313 | 313 | <li class="yt-c3-grid-item"> |
314 | 314 | <a href="/watch?v=<?php echo htmlspecialchars($video['rid']); ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="feature=plcp&context=C4e80d7cVDvjVQa1PpcFPHxNkhfeSQg8_nJHnhVurQf82C2OenNiw%3D"><span class="video-thumb ux-thumb yt-thumb-default-234 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" width="234"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
315 | 315 | <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="yBlvNSfqAj0" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -8,10 +8,10 @@ |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Edit Video"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Edit Video"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <?php if(!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
17 | 17 | <?php $_video = $__video_h->fetch_video_rid($_GET['id']); ?> |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
14 | 14 | $__server->page_embeds->page_url = "https://subrock.rocks/"; |
15 | 15 | ?> |
16 | -<?php if(!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
16 | +<?php if (!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
17 | 17 | <?php $_video = $__video_h->fetch_video_rid($_GET['id']); ?> |
18 | 18 | <!DOCTYPE html> |
19 | 19 | <html dir="ltr"> |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | <b>Category</b> <br> |
178 | 178 | <select style="margin-top:5px;" name="category" class="yt-uix-button yt-uix-button-default"> |
179 | 179 | <?php $categories = ["None", "Film & Animation", "Autos & Vehicles", "Music", "Pets & Animals", "Sports", "Travel & Events", "Gaming", "People & Blogs", "Comedy", "Entertainment", "News & Politics", "Howto & Style", "Education", "Science & Technology", "Nonprofits & Activism"]; ?> |
180 | - <?php foreach($categories as $categoryTag) { ?> |
|
180 | + <?php foreach ($categories as $categoryTag) { ?> |
|
181 | 181 | <option value="<?php echo $categoryTag; ?>"><?php echo $categoryTag; ?></option> |
182 | 182 | <?php } ?> |
183 | 183 | </select><br><br> |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Activism"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Activism"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <!DOCTYPE html> |
17 | 17 | <html dir="ltr"> |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | </div> |
142 | 142 | <div class="browse-item-row ytg-box"> |
143 | 143 | <?php |
144 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
145 | - $stmt->execute(); |
|
146 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | - $video['author'] = htmlspecialchars($video['author']); |
|
151 | - $video['title'] = htmlspecialchars($video['title']); |
|
152 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | - ?> |
|
144 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
145 | + $stmt->execute(); |
|
146 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | + $video['author'] = htmlspecialchars($video['author']); |
|
151 | + $video['title'] = htmlspecialchars($video['title']); |
|
152 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | + ?> |
|
154 | 154 | <div class="browse-item yt-tile-default "> |
155 | 155 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
156 | 156 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | </div> |
177 | 177 | <div class="browse-item-row ytg-box"> |
178 | 178 | <?php |
179 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
180 | - $stmt->execute(); |
|
181 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | - $video['author'] = htmlspecialchars($video['author']); |
|
186 | - $video['title'] = htmlspecialchars($video['title']); |
|
187 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | - ?> |
|
179 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
180 | + $stmt->execute(); |
|
181 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | + $video['author'] = htmlspecialchars($video['author']); |
|
186 | + $video['title'] = htmlspecialchars($video['title']); |
|
187 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | + ?> |
|
189 | 189 | <div class="browse-item yt-tile-default "> |
190 | 190 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
191 | 191 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -211,16 +211,16 @@ discard block |
||
211 | 211 | </div> |
212 | 212 | <div class="browse-item-row ytg-box"> |
213 | 213 | <?php |
214 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
215 | - $stmt->execute(); |
|
216 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | - $video['author'] = htmlspecialchars($video['author']); |
|
221 | - $video['title'] = htmlspecialchars($video['title']); |
|
222 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | - ?> |
|
214 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
215 | + $stmt->execute(); |
|
216 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | + $video['author'] = htmlspecialchars($video['author']); |
|
221 | + $video['title'] = htmlspecialchars($video['title']); |
|
222 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | + ?> |
|
224 | 224 | <div class="browse-item yt-tile-default "> |
225 | 225 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
226 | 226 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -246,16 +246,16 @@ discard block |
||
246 | 246 | </div> |
247 | 247 | <div class="browse-item-row ytg-box"> |
248 | 248 | <?php |
249 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
250 | - $stmt->execute(); |
|
251 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | - $video['author'] = htmlspecialchars($video['author']); |
|
256 | - $video['title'] = htmlspecialchars($video['title']); |
|
257 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | - ?> |
|
249 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
250 | + $stmt->execute(); |
|
251 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | + $video['author'] = htmlspecialchars($video['author']); |
|
256 | + $video['title'] = htmlspecialchars($video['title']); |
|
257 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | + ?> |
|
259 | 259 | <div class="browse-item yt-tile-default "> |
260 | 260 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
261 | 261 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | </div> |
282 | 282 | <div class="browse-item-row ytg-box"> |
283 | 283 | <?php |
284 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
285 | - $stmt->execute(); |
|
286 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | - $video['author'] = htmlspecialchars($video['author']); |
|
291 | - $video['title'] = htmlspecialchars($video['title']); |
|
292 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | - ?> |
|
284 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Nonprofits & Activism' ORDER BY rand() LIMIT 4"); |
|
285 | + $stmt->execute(); |
|
286 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | + $video['author'] = htmlspecialchars($video['author']); |
|
291 | + $video['title'] = htmlspecialchars($video['title']); |
|
292 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | + ?> |
|
294 | 294 | <div class="browse-item yt-tile-default "> |
295 | 295 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
296 | 296 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -11,19 +11,19 @@ discard block |
||
11 | 11 | <?php $__user_u = new user_update($__db); ?> |
12 | 12 | <?php $__db_h = new db_helper(); ?> |
13 | 13 | <?php $__time_h = new time_helper(); ?> |
14 | -<?php if(!$__video_h->video_exists($_GET['v'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
14 | +<?php if (!$__video_h->video_exists($_GET['v'])) { header("Location: /?error=This video doesn't exist!"); } ?> |
|
15 | 15 | <?php $_video = $__video_h->fetch_video_rid($_GET['v']); ?> |
16 | 16 | <?php $_video['comments'] = $__video_h->get_comments_from_video($_video['rid']); ?> |
17 | 17 | <?php |
18 | - if($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
18 | + if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
19 | 19 | $error = array(); |
20 | 20 | |
21 | - if(!isset($_SESSION['siteusername'])){ $error['message'] = "you are not logged in"; $error['status'] = true; } |
|
22 | - if(!$_POST['comment']){ $error['message'] = "your comment cannot be blank"; $error['status'] = true; } |
|
23 | - if(strlen($_POST['comment']) > 1000){ $error['message'] = "your comment 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 posting another comment."; $error['status'] = true; } |
|
21 | + if (!isset($_SESSION['siteusername'])) { $error['message'] = "you are not logged in"; $error['status'] = true; } |
|
22 | + if (!$_POST['comment']) { $error['message'] = "your comment cannot be blank"; $error['status'] = true; } |
|
23 | + if (strlen($_POST['comment']) > 1000) { $error['message'] = "your comment 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 posting another comment."; $error['status'] = true; } |
|
25 | 25 | |
26 | - if(!isset($error['message'])) { |
|
26 | + if (!isset($error['message'])) { |
|
27 | 27 | $text = $_POST['comment']; |
28 | 28 | $stmt = $__db->prepare("INSERT INTO comments (toid, author, comment) VALUES (:v, :username, :comment)"); |
29 | 29 | $stmt->bindParam(":v", $_GET['v']); |
@@ -80,20 +80,20 @@ discard block |
||
80 | 80 | if (window.yt.timing) {yt.timing.tick("ct");} |
81 | 81 | </script> |
82 | 82 | <?php |
83 | - $_video['dislikes'] = $__video_h->get_video_stars_level($_video['rid'], 1); |
|
83 | + $_video['dislikes'] = $__video_h->get_video_stars_level($_video['rid'], 1); |
|
84 | 84 | $_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2); |
85 | 85 | |
86 | - $_video['likes'] = $__video_h->get_video_stars_level($_video['rid'], 4); |
|
87 | - $_video['likes'] += $__video_h->get_video_stars_level($_video['rid'], 5); |
|
86 | + $_video['likes'] = $__video_h->get_video_stars_level($_video['rid'], 4); |
|
87 | + $_video['likes'] += $__video_h->get_video_stars_level($_video['rid'], 5); |
|
88 | 88 | |
89 | 89 | $_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false); |
90 | 90 | $_video['likes'] += $__video_h->get_video_likes($_video['rid'], true); |
91 | 91 | |
92 | - if($_video['likes'] == 0 && $_video['dislikes'] == 0) { |
|
92 | + if ($_video['likes'] == 0 && $_video['dislikes'] == 0) { |
|
93 | 93 | $_video['likeswidth'] = 50; |
94 | 94 | $_video['dislikeswidth'] = 50; |
95 | 95 | } else { |
96 | - $_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100; |
|
96 | + $_video['likeswidth'] = $_video['likes']/($_video['likes'] + $_video['dislikes'])*100; |
|
97 | 97 | $_video['dislikeswidth'] = 100 - $_video['likeswidth']; |
98 | 98 | } |
99 | 99 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | </div> |
128 | 128 | <div id="instream_google_companion_ad_div"></div> |
129 | 129 | </div> |
130 | - <?php if(@$_SESSION['siteusername'] == $_video['author']) { ?> |
|
130 | + <?php if (@$_SESSION['siteusername'] == $_video['author']) { ?> |
|
131 | 131 | <div id="watch-owner-container"> |
132 | 132 | <div id="masthead-subnav" class="yt-nav yt-nav-dark "> |
133 | 133 | <ul class="yt-nav-aside"> |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | title="" |
163 | 163 | id="subscribe-button" |
164 | 164 | type="button" |
165 | - class="<?php if($_video['subscribed']) { echo "subscribed "; } ?>yt-subscription-button yt-uix-button yt-uix-button-subscription yt-uix-tooltip" |
|
165 | + class="<?php if ($_video['subscribed']) { echo "subscribed "; } ?>yt-subscription-button yt-uix-button yt-uix-button-subscription yt-uix-tooltip" |
|
166 | 166 | role="button"> |
167 | 167 | <span class="yt-uix-button-icon-wrapper"> |
168 | 168 | <img class="yt-uix-button-icon yt-uix-button-icon-subscribe" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""> |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | <button onclick=";like_video();return false;" |
244 | 244 | title="I like this" |
245 | 245 | type="button" |
246 | - class="start <?php if($_video['liked']) { echo "liked "; } ?>yt-uix-tooltip-reverse yt-uix-button yt-uix-button-default yt-uix-tooltip" |
|
246 | + class="start <?php if ($_video['liked']) { echo "liked "; } ?>yt-uix-tooltip-reverse yt-uix-button yt-uix-button-default yt-uix-tooltip" |
|
247 | 247 | id="watch-like" |
248 | 248 | href="/get/like_video?v=<?php echo $_video['rid']; ?>" |
249 | 249 | role="button"><span class="yt-uix-button-icon-wrapper"> |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | type="button" |
258 | 258 | style="margin-left: -2px;" |
259 | 259 | href="/get/dislike_video?v=<?php echo $_video['rid']; ?>" |
260 | - 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" |
|
260 | + 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" |
|
261 | 261 | id="watch-unlike" |
262 | 262 | role="button"> |
263 | 263 | <span class="yt-uix-button-icon-wrapper"> |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | not implemented ismnf |
276 | 276 | </div> |
277 | 277 | <div id="watch-actions-logged-out" class="watch-actions-panel hid"> |
278 | - <?php if(!isset($_SESSION['siteusername'])) { ?> |
|
278 | + <?php if (!isset($_SESSION['siteusername'])) { ?> |
|
279 | 279 | <div class="yt-alert yt-alert-naked yt-alert-warn "> |
280 | 280 | <div class="yt-alert-icon"> |
281 | 281 | <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" class="icon master-sprite" alt="Alert icon"> |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | <?php } else { ?> |
292 | 292 | <h3>Be friends with the creator</h3> |
293 | 293 | |
294 | - <?php if($_SESSION['siteusername'] != $_video['author']) { ?> |
|
294 | + <?php if ($_SESSION['siteusername'] != $_video['author']) { ?> |
|
295 | 295 | <img style="width: 50px;height:50px;" src="/dynamic/pfp/<?php echo $__user_h->fetch_pfp($_video['author']); ?>"> |
296 | 296 | <span style="display: inline-block; vertical-align:top;width: 100px;font-size:11px;"> |
297 | 297 | <b><a href="/user/<?php echo htmlspecialchars($_video['author']); ?>"><?php echo htmlspecialchars($_video['author']); ?></a></b><br> |
@@ -305,8 +305,8 @@ discard block |
||
305 | 305 | </span><br><br> |
306 | 306 | <?php } ?> |
307 | 307 | |
308 | - <?php if($_SESSION['siteusername'] != $_video['author']) { ?> |
|
309 | - <?php if($_video['friended'] == false) { ?> |
|
308 | + <?php if ($_SESSION['siteusername'] != $_video['author']) { ?> |
|
309 | + <?php if ($_video['friended'] == false) { ?> |
|
310 | 310 | <a href="/friends">Send a friend request</a> |
311 | 311 | <?php } else { ?> |
312 | 312 | Your friend request is pending. |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | <?php } ?> |
317 | 317 | <hr><br> |
318 | 318 | <h3>Add to Favorites</h3> |
319 | - <?php if($_video['favorited'] == false) { ?> |
|
319 | + <?php if ($_video['favorited'] == false) { ?> |
|
320 | 320 | <a href="/get/favorite?v=<?php echo $_video['rid']; ?>">Favorite Video</a> |
321 | 321 | <?php } else { ?> |
322 | 322 | <a href="/get/unfavorite?v=<?php echo $_video['rid']; ?>">Unfavorite Video</a> |
@@ -327,10 +327,10 @@ discard block |
||
327 | 327 | $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY id DESC LIMIT 20"); |
328 | 328 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
329 | 329 | $stmt->execute(); |
330 | - while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
330 | + while ($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
331 | 331 | $buffer = json_decode($playlist['videos']); |
332 | 332 | @$rid = $buffer[0]; |
333 | - if(!empty($rid)) { |
|
333 | + if (!empty($rid)) { |
|
334 | 334 | @$video = $__video_h->fetch_video_rid($rid); |
335 | 335 | } else { |
336 | 336 | $video['thumbnail'] = ""; |
@@ -608,7 +608,7 @@ discard block |
||
608 | 608 | $stmt->execute(); |
609 | 609 | ?> |
610 | 610 | |
611 | - <?php if($stmt->rowCount() != 0) { ?> |
|
611 | + <?php if ($stmt->rowCount() != 0) { ?> |
|
612 | 612 | <div class="comments-section"> |
613 | 613 | <a class="comments-section-see-all" href="/video_response_view_all?v=<?php echo htmlspecialchars($_video['rid']); ?>"> |
614 | 614 | see all |
@@ -616,8 +616,8 @@ discard block |
||
616 | 616 | <h4>Video Responses</h4> |
617 | 617 | <ul class="video-list"> |
618 | 618 | <?php |
619 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
620 | - if($__video_h->video_exists($video['video'])) { |
|
619 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
620 | + if ($__video_h->video_exists($video['video'])) { |
|
621 | 621 | $video = $__video_h->fetch_video_rid($video['video']); |
622 | 622 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
623 | 623 | $video['duration'] = $__time_h->timestamp($video['duration']); |
@@ -648,19 +648,19 @@ discard block |
||
648 | 648 | </h4> |
649 | 649 | </div> |
650 | 650 | </div> |
651 | - <?php if(!isset($_SESSION['siteusername'])) { ?> |
|
651 | + <?php if (!isset($_SESSION['siteusername'])) { ?> |
|
652 | 652 | <div class="comments-post-container clearfix"> |
653 | 653 | <div class="comments-post-alert"> |
654 | 654 | <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> |
655 | 655 | </div> |
656 | 656 | </div> |
657 | - <?php } else if($_video['commenting'] == "d") { ?> |
|
657 | + <?php } else if ($_video['commenting'] == "d") { ?> |
|
658 | 658 | <div class="comments-post-container clearfix"> |
659 | 659 | <div class="comments-post-alert"> |
660 | 660 | This video has comemnting disabled! |
661 | 661 | </div> |
662 | 662 | </div> |
663 | - <?php } else if($__user_h->if_blocked($_video['author'], $_SESSION['siteusername'])) { ?> |
|
663 | + <?php } else if ($__user_h->if_blocked($_video['author'], $_SESSION['siteusername'])) { ?> |
|
664 | 664 | <div class="comments-post-container clearfix"> |
665 | 665 | <div class="comments-post-alert"> |
666 | 666 | This user has blocked you! |
@@ -714,15 +714,15 @@ discard block |
||
714 | 714 | $stmt->execute(); |
715 | 715 | |
716 | 716 | $number_of_result = $stmt->rowCount(); |
717 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
717 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
718 | 718 | |
719 | - if (!isset ($_GET['page']) ) { |
|
719 | + if (!isset ($_GET['page'])) { |
|
720 | 720 | $page = 1; |
721 | 721 | } else { |
722 | - $page = (int)$_GET['page']; |
|
722 | + $page = (int) $_GET['page']; |
|
723 | 723 | } |
724 | 724 | |
725 | - $page_first_result = ($page - 1) * $results_per_page; |
|
725 | + $page_first_result = ($page - 1)*$results_per_page; |
|
726 | 726 | |
727 | 727 | $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper"); |
728 | 728 | $stmt->bindParam(":rid", $_video['rid']); |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | $stmt->bindParam(":pper", $results_per_page); |
731 | 731 | $stmt->execute(); |
732 | 732 | |
733 | - while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
733 | + while ($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
734 | 734 | ?> |
735 | 735 | |
736 | 736 | <li class="comment yt-tile-default " data-author-viewing="" data-author-id="-uD01K8FQTeOSS5sniRFzQ" data-id="HdQrMeklJ_5hd_uPDRcvtdaMk2pMVS8d9sufcfiGx0U" data-score="0"> |
@@ -812,7 +812,7 @@ discard block |
||
812 | 812 | <?php |
813 | 813 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20"); |
814 | 814 | $stmt->execute(); |
815 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
815 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
816 | 816 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
817 | 817 | $video['duration'] = $__time_h->timestamp($video['duration']); |
818 | 818 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -25,21 +25,21 @@ discard block |
||
25 | 25 | return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars. |
26 | 26 | } |
27 | 27 | |
28 | - function addhttp($url) { |
|
29 | - if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { |
|
30 | - $url = "http://" . $url; |
|
31 | - } |
|
32 | - return $url; |
|
33 | - } |
|
28 | + function addhttp($url) { |
|
29 | + if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { |
|
30 | + $url = "http://" . $url; |
|
31 | + } |
|
32 | + return $url; |
|
33 | + } |
|
34 | 34 | |
35 | 35 | function check_valid_colorhex($colorCode) { |
36 | 36 | // If user accidentally passed along the # sign, strip it off |
37 | 37 | $colorCode = ltrim($colorCode, '#'); |
38 | 38 | |
39 | 39 | if ( |
40 | - ctype_xdigit($colorCode) && |
|
40 | + ctype_xdigit($colorCode) && |
|
41 | 41 | (strlen($colorCode) == 6 || strlen($colorCode) == 3)) |
42 | - return true; |
|
42 | + return true; |
|
43 | 43 | |
44 | 44 | else return false; |
45 | 45 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $_user['2009_bgcolor'] = substr($_user['2009_bgcolor'], 0, 7); |
65 | 65 | |
66 | 66 | $_user['genre'] = strtolower($_user['genre']); |
67 | - $_user['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_user['username']); |
|
67 | + $_user['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_user['username']); |
|
68 | 68 | |
69 | 69 | if(!check_valid_colorhex($_user['primary_color']) && strlen($_user['primary_color']) != 6) { $_user['primary_color'] = ""; } |
70 | 70 | if(!check_valid_colorhex($_user['secondary_color']) && strlen($_user['secondary_color']) != 6) { $_user['secondary_color'] = ""; } |
@@ -73,8 +73,8 @@ discard block |
||
73 | 73 | if(!check_valid_colorhex($_user['primary_color_text']) && strlen($_user['primary_color_text']) != 6) { $_user['primary_color_text'] = ""; } |
74 | 74 | if(!check_valid_colorhex($_user['2009_bgcolor']) && strlen($_user['2009_bgcolor']) != 6) { $_user['2009_bgcolor'] = ""; } |
75 | 75 | |
76 | - if(isset($_SESSION['siteusername'])) |
|
77 | - $__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']); |
|
76 | + if(isset($_SESSION['siteusername'])) |
|
77 | + $__user_i->check_view_channel($_user['username'], @$_SESSION['siteusername']); |
|
78 | 78 | |
79 | 79 | if($_SERVER['REQUEST_METHOD'] == 'POST') { |
80 | 80 | $error = array(); |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | //if(ifBlocked(@$_SESSION['siteusername'], $user['username'], $__db)) { $error = "This user has blocked you!"; $error['status'] = true; } |
89 | 89 | |
90 | 90 | if(!isset($error['message'])) { |
91 | - $text = $_POST['comment']; |
|
91 | + $text = $_POST['comment']; |
|
92 | 92 | $stmt = $__db->prepare("INSERT INTO profile_comments (toid, author, comment) VALUES (:id, :username, :comment)"); |
93 | - $stmt->bindParam(":id", $_user['username']); |
|
94 | - $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
95 | - $stmt->bindParam(":comment", $text); |
|
93 | + $stmt->bindParam(":id", $_user['username']); |
|
94 | + $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
95 | + $stmt->bindParam(":comment", $text); |
|
96 | 96 | $stmt->execute(); |
97 | 97 | |
98 | 98 | $_user_update_utils->update_comment_cooldown_time($_SESSION['siteusername']); |
@@ -104,10 +104,10 @@ discard block |
||
104 | 104 | } |
105 | 105 | ?> |
106 | 106 | <?php |
107 | - $__server->page_embeds->page_title = "SubRocks - " . htmlspecialchars($_playlist['title']); |
|
108 | - $__server->page_embeds->page_description = htmlspecialchars($_playlist['description']); |
|
109 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
110 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
107 | + $__server->page_embeds->page_title = "SubRocks - " . htmlspecialchars($_playlist['title']); |
|
108 | + $__server->page_embeds->page_description = htmlspecialchars($_playlist['description']); |
|
109 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
110 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
111 | 111 | ?> |
112 | 112 | <!DOCTYPE html> |
113 | 113 | <html dir="ltr" xmlns:og="http://opengraphprotocol.org/schema/" lang="en"> |
@@ -151,9 +151,9 @@ discard block |
||
151 | 151 | <div class="channel_customization"><?php require($_SERVER['DOCUMENT_ROOT'] . "/s/mod/channel_customization.php"); ?></div> |
152 | 152 | <?php } ?> |
153 | 153 | <?php |
154 | - if(empty(trim($_user['bio']))) |
|
155 | - $_user['bio'] = "This user has no description."; |
|
156 | - ?> |
|
154 | + if(empty(trim($_user['bio']))) |
|
155 | + $_user['bio'] = "This user has no description."; |
|
156 | + ?> |
|
157 | 157 | <div id="content"> |
158 | 158 | <div class="subscription-menu-expandable subscription-menu-expandable-channels3 yt-rounded ytg-wide hid"> |
159 | 159 | <div class="content" id="recommended-channels-list"></div> |
@@ -312,20 +312,20 @@ discard block |
||
312 | 312 | </div> |
313 | 313 | <ol> |
314 | 314 | <?php |
315 | - $_playlist['videos'] = json_decode($_playlist['videos']); |
|
316 | - $_playlist['count'] = 1; |
|
317 | - foreach($_playlist['videos'] as $video) { |
|
318 | - if($__video_h->video_exists($video)) { |
|
319 | - $_video = $__video_h->fetch_video_rid($video); |
|
320 | - $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']); |
|
321 | - $_video['age'] = $__time_h->time_elapsed_string($_video['publish']); |
|
322 | - $_video['duration'] = $__time_h->timestamp($_video['duration']); |
|
323 | - $_video['views'] = $__video_h->fetch_video_views($_video['rid']); |
|
324 | - $_video['author'] = htmlspecialchars($_video['author']); |
|
325 | - $_video['title'] = htmlspecialchars($_video['title']); |
|
326 | - $_video['description'] = $__video_h->shorten_description($_video['description'], 50); |
|
327 | - $_playlist['title'] = htmlspecialchars($_playlist['title']); |
|
328 | - ?> |
|
315 | + $_playlist['videos'] = json_decode($_playlist['videos']); |
|
316 | + $_playlist['count'] = 1; |
|
317 | + foreach($_playlist['videos'] as $video) { |
|
318 | + if($__video_h->video_exists($video)) { |
|
319 | + $_video = $__video_h->fetch_video_rid($video); |
|
320 | + $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']); |
|
321 | + $_video['age'] = $__time_h->time_elapsed_string($_video['publish']); |
|
322 | + $_video['duration'] = $__time_h->timestamp($_video['duration']); |
|
323 | + $_video['views'] = $__video_h->fetch_video_views($_video['rid']); |
|
324 | + $_video['author'] = htmlspecialchars($_video['author']); |
|
325 | + $_video['title'] = htmlspecialchars($_video['title']); |
|
326 | + $_video['description'] = $__video_h->shorten_description($_video['description'], 50); |
|
327 | + $_playlist['title'] = htmlspecialchars($_playlist['title']); |
|
328 | + ?> |
|
329 | 329 | <li class="playlist-video-item |
330 | 330 | odd |
331 | 331 | "> |
@@ -480,9 +480,9 @@ discard block |
||
480 | 480 | <h2>Featured Channels</h2> |
481 | 481 | <ul class="channel-summary-list "> |
482 | 482 | <?php |
483 | - foreach($_user['featured_channels'] as $user) { |
|
484 | - if($__user_h->user_exists($user)) { |
|
485 | - ?> |
|
483 | + foreach($_user['featured_channels'] as $user) { |
|
484 | + if($__user_h->user_exists($user)) { |
|
485 | + ?> |
|
486 | 486 | <li class="yt-tile-visible yt-uix-tile"> |
487 | 487 | <div class="channel-summary clearfix channel-summary-compact"> |
488 | 488 | <div class="channel-summary-thumb"> |
@@ -506,19 +506,19 @@ discard block |
||
506 | 506 | </div> |
507 | 507 | |
508 | 508 | <?php |
509 | - $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10"); |
|
510 | - $stmt->bindParam(":search", $_user['username']); |
|
511 | - $stmt->execute(); |
|
509 | + $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :search ORDER BY id DESC LIMIT 10"); |
|
510 | + $stmt->bindParam(":search", $_user['username']); |
|
511 | + $stmt->execute(); |
|
512 | 512 | |
513 | - if($stmt->rowCount() != 0) { |
|
514 | - ?> |
|
513 | + if($stmt->rowCount() != 0) { |
|
514 | + ?> |
|
515 | 515 | <div class="playlists-narrow channel-module yt-uix-c3-module-container"> |
516 | 516 | <div class="module-view gh-featured"> |
517 | 517 | <h2>Featured Playlists</h2> |
518 | 518 | <?php |
519 | - while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
520 | - $playlist['videos'] = json_decode($playlist['videos']); |
|
521 | - ?> |
|
519 | + while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
520 | + $playlist['videos'] = json_decode($playlist['videos']); |
|
521 | + ?> |
|
522 | 522 | <div class="playlist yt-tile-visible yt-uix-tile"> |
523 | 523 | <a href="/view_playlist?v=<?php echo $playlist['rid']; ?>"> |
524 | 524 | <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"> |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Autos"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Autos"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <!DOCTYPE html> |
17 | 17 | <html dir="ltr"> |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | </div> |
142 | 142 | <div class="browse-item-row ytg-box"> |
143 | 143 | <?php |
144 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
145 | - $stmt->execute(); |
|
146 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | - $video['author'] = htmlspecialchars($video['author']); |
|
151 | - $video['title'] = htmlspecialchars($video['title']); |
|
152 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | - ?> |
|
144 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
145 | + $stmt->execute(); |
|
146 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | + $video['author'] = htmlspecialchars($video['author']); |
|
151 | + $video['title'] = htmlspecialchars($video['title']); |
|
152 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | + ?> |
|
154 | 154 | <div class="browse-item yt-tile-default "> |
155 | 155 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
156 | 156 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | </div> |
177 | 177 | <div class="browse-item-row ytg-box"> |
178 | 178 | <?php |
179 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
180 | - $stmt->execute(); |
|
181 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | - $video['author'] = htmlspecialchars($video['author']); |
|
186 | - $video['title'] = htmlspecialchars($video['title']); |
|
187 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | - ?> |
|
179 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
180 | + $stmt->execute(); |
|
181 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | + $video['author'] = htmlspecialchars($video['author']); |
|
186 | + $video['title'] = htmlspecialchars($video['title']); |
|
187 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | + ?> |
|
189 | 189 | <div class="browse-item yt-tile-default "> |
190 | 190 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
191 | 191 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -211,16 +211,16 @@ discard block |
||
211 | 211 | </div> |
212 | 212 | <div class="browse-item-row ytg-box"> |
213 | 213 | <?php |
214 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
215 | - $stmt->execute(); |
|
216 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | - $video['author'] = htmlspecialchars($video['author']); |
|
221 | - $video['title'] = htmlspecialchars($video['title']); |
|
222 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | - ?> |
|
214 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
215 | + $stmt->execute(); |
|
216 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | + $video['author'] = htmlspecialchars($video['author']); |
|
221 | + $video['title'] = htmlspecialchars($video['title']); |
|
222 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | + ?> |
|
224 | 224 | <div class="browse-item yt-tile-default "> |
225 | 225 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
226 | 226 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -246,16 +246,16 @@ discard block |
||
246 | 246 | </div> |
247 | 247 | <div class="browse-item-row ytg-box"> |
248 | 248 | <?php |
249 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
250 | - $stmt->execute(); |
|
251 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | - $video['author'] = htmlspecialchars($video['author']); |
|
256 | - $video['title'] = htmlspecialchars($video['title']); |
|
257 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | - ?> |
|
249 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
250 | + $stmt->execute(); |
|
251 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | + $video['author'] = htmlspecialchars($video['author']); |
|
256 | + $video['title'] = htmlspecialchars($video['title']); |
|
257 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | + ?> |
|
259 | 259 | <div class="browse-item yt-tile-default "> |
260 | 260 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
261 | 261 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | </div> |
282 | 282 | <div class="browse-item-row ytg-box"> |
283 | 283 | <?php |
284 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
285 | - $stmt->execute(); |
|
286 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | - $video['author'] = htmlspecialchars($video['author']); |
|
291 | - $video['title'] = htmlspecialchars($video['title']); |
|
292 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | - ?> |
|
284 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Autos & Vehicles' ORDER BY rand() LIMIT 4"); |
|
285 | + $stmt->execute(); |
|
286 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | + $video['author'] = htmlspecialchars($video['author']); |
|
291 | + $video['title'] = htmlspecialchars($video['title']); |
|
292 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | + ?> |
|
294 | 294 | <div class="browse-item yt-tile-default "> |
295 | 295 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
296 | 296 | <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="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |