Test Failed
Pull Request — main (#18)
by
unknown
04:17
created
web/public/template.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
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 - Replace me";
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 - Replace me";
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>
Please login to merge, or discard this patch.
web/public/uploaded_video.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -8,17 +8,17 @@
 block discarded – undo
8 8
 <?php $__db_h = new db_helper(); ?>
9 9
 <?php $__time_h = new time_helper(); ?>
10 10
 <?php
11
-	if(!$__video_h->video_exists($_GET['v']))
12
-		header("Location: /?error=Your video has not processed correctly. Try reuploading it with a shorter title, description, or tag.");
11
+    if(!$__video_h->video_exists($_GET['v']))
12
+        header("Location: /?error=Your video has not processed correctly. Try reuploading it with a shorter title, description, or tag.");
13 13
 
14
-	$video = $__video_h->fetch_video_rid($_GET['v']);
15
-	$video['video_responses'] = $__video_h->get_video_responses($video['rid']);
16
-	$video['age'] = $__time_h->time_elapsed_string($video['publish']);		
17
-	$video['duration'] = $__time_h->timestamp($video['duration']);
18
-	$video['views'] = $__video_h->fetch_video_views($video['rid']);
19
-	$video['author'] = htmlspecialchars($video['author']);		
20
-	$video['title'] = htmlspecialchars($video['title']);
21
-	$video['description'] = $__video_h->shorten_description($video['description'], 50);
14
+    $video = $__video_h->fetch_video_rid($_GET['v']);
15
+    $video['video_responses'] = $__video_h->get_video_responses($video['rid']);
16
+    $video['age'] = $__time_h->time_elapsed_string($video['publish']);		
17
+    $video['duration'] = $__time_h->timestamp($video['duration']);
18
+    $video['views'] = $__video_h->fetch_video_views($video['rid']);
19
+    $video['author'] = htmlspecialchars($video['author']);		
20
+    $video['title'] = htmlspecialchars($video['title']);
21
+    $video['description'] = $__video_h->shorten_description($video['description'], 50);
22 22
 
23 23
     if($_SESSION['siteusername'] != $video['author'])
24 24
         header("Location: /");
Please login to merge, or discard this patch.
web/public/index.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.