Passed
Push — main ( b78c1f...17bea0 )
by chief
34s queued 12s
created
favorite_videos.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
                                 ?>
176 176
                                 <?php 
177 177
                                     $stmt6 = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :search ORDER BY id DESC LIMIT :pfirst, :pper");
178
-									$stmt6->bindParam(":search", $search);
178
+                                    $stmt6->bindParam(":search", $search);
179 179
                                     $stmt6->bindParam(":pfirst", $page_first_result);
180 180
                                     $stmt6->bindParam(":pper", $results_per_page);
181 181
                                     $stmt6->execute();
@@ -192,32 +192,32 @@  discard block
 block discarded – undo
192 192
                                     
193 193
                                     <?php
194 194
                                         while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { 
195
-											if($__video_h->video_exists($video['reciever'])) {
196
-												$_video = $__video_h->fetch_video_rid($video['reciever']);
197
-												$_video['video_responses'] = $__video_h->get_video_responses($_video['rid']);
198
-												$_video['age'] = $__time_h->time_elapsed_string($_video['publish']);		
199
-												$_video['duration'] = $__time_h->timestamp($_video['duration']);
200
-												$_video['views'] = $__video_h->fetch_video_views($_video['rid']);
201
-												$_video['author'] = htmlspecialchars($_video['author']);		
202
-												$_video['title'] = htmlspecialchars($_video['title']);
203
-												$_video['description'] = $__video_h->shorten_description($_video['description'], 50);
204
-
205
-												if($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") {
206
-													$status = "Corrupted";
207
-												} else if($_video['visibility'] == "v") {
208
-													$status = "Approved";
209
-												} else if($_video['visibility'] == "n") {
210
-													$status = "Approved";
211
-												} else if($_video['visibility'] == "o") {
212
-													$status = "Disapproved";
213
-												} else {
214
-													$status = "Unknown";
215
-												}                      
195
+                                            if($__video_h->video_exists($video['reciever'])) {
196
+                                                $_video = $__video_h->fetch_video_rid($video['reciever']);
197
+                                                $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']);
198
+                                                $_video['age'] = $__time_h->time_elapsed_string($_video['publish']);		
199
+                                                $_video['duration'] = $__time_h->timestamp($_video['duration']);
200
+                                                $_video['views'] = $__video_h->fetch_video_views($_video['rid']);
201
+                                                $_video['author'] = htmlspecialchars($_video['author']);		
202
+                                                $_video['title'] = htmlspecialchars($_video['title']);
203
+                                                $_video['description'] = $__video_h->shorten_description($_video['description'], 50);
204
+
205
+                                                if($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") {
206
+                                                    $status = "Corrupted";
207
+                                                } else if($_video['visibility'] == "v") {
208
+                                                    $status = "Approved";
209
+                                                } else if($_video['visibility'] == "n") {
210
+                                                    $status = "Approved";
211
+                                                } else if($_video['visibility'] == "o") {
212
+                                                    $status = "Disapproved";
213
+                                                } else {
214
+                                                    $status = "Unknown";
215
+                                                }                      
216 216
 												
217
-												if($_video['commenting'] == "a") 
218
-													$_video['commentstatus'] = "Commenting allowed";
219
-												else 
220
-													$_video['commentstatus'] = "Commenting disallowed";
217
+                                                if($_video['commenting'] == "a") 
218
+                                                    $_video['commentstatus'] = "Commenting allowed";
219
+                                                else 
220
+                                                    $_video['commentstatus'] = "Commenting disallowed";
221 221
                                     ?> 
222 222
                                     <tr style="margin-top: 5px;" id="videoslist">
223 223
                                         <td class="video-manager-left">
Please login to merge, or discard this patch.
guide_ajax.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         $stmt->bindParam(":username", $username);
94 94
         $stmt->execute();
95 95
     }
96
-	?>
96
+    ?>
97 97
 {'paging': null, 'feed_html': `
98 98
 <div class=\'feed-header no-metadata\'>
99 99
 	<div class=\'feed-header-thumb\'>
Please login to merge, or discard this patch.