Passed
Push — master ( 0b1807...d31d00 )
by Nicolas
08:05
created
public/php/admin/games/db_games_facts.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
                 $smarty->append(
176 176
                     'facts_screenshots',
177 177
                     array('game_fact_id' => $sql_games_facts['game_fact_id'],
178
-                       'screenshot_id' => $sql_screenshots_facts['screenshot_id'],
179
-                       'game_fact_screenshot' => $new_path)
178
+                        'screenshot_id' => $sql_screenshots_facts['screenshot_id'],
179
+                        'game_fact_screenshot' => $new_path)
180 180
                 );
181 181
             }
182 182
 
@@ -290,8 +290,8 @@  discard block
 block discarded – undo
290 290
             $smarty->append(
291 291
                 'facts_screenshots',
292 292
                 array('game_fact_id' => $sql_games_facts['game_fact_id'],
293
-                   'screenshot_id' => $sql_screenshots_facts['screenshot_id'],
294
-                   'game_fact_screenshot' => $new_path)
293
+                    'screenshot_id' => $sql_screenshots_facts['screenshot_id'],
294
+                    'game_fact_screenshot' => $new_path)
295 295
             );
296 296
         }
297 297
 
Please login to merge, or discard this patch.
public/php/admin/games/games_facts.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
         $smarty->append(
47 47
             'facts_screenshots',
48 48
             array('game_fact_id' => $sql_games_facts['game_fact_id'],
49
-               'screenshot_id' => $sql_screenshots_facts['screenshot_id'],
50
-               'game_fact_screenshot' => $new_path)
49
+                'screenshot_id' => $sql_screenshots_facts['screenshot_id'],
50
+                'game_fact_screenshot' => $new_path)
51 51
         );
52 52
     }
53 53
 
Please login to merge, or discard this patch.
public/php/admin/news/ajax_news_search.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  *
11 11
  ***************************************************************************/
12 12
 
13
- //load all common functions
13
+    //load all common functions
14 14
 include("../../config/common.php");
15 15
 include("../../config/admin.php");
16 16
 
Please login to merge, or discard this patch.
public/php/admin/user/ajax_user_management.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
  *           - user search field now working
13 13
  *
14 14
  ***************************************************************************/
15
- include("../../config/common.php");
16
- include("../../admin/games/quick_search_games.php");
17
- include("../../config/admin.php");
15
+    include("../../config/common.php");
16
+    include("../../admin/games/quick_search_games.php");
17
+    include("../../config/admin.php");
18 18
 
19 19
 $start = microtime(true);
20 20
 $last_visit_timestamp = date_to_timestamp($Date_Year, $Date_Month, $Date_Day);
Please login to merge, or discard this patch.
public/php/admin/links/link_mod.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@
 block discarded – undo
32 32
 
33 33
 $rowlink= $LINKSQL->fetch_array(MYSQLI_BOTH);
34 34
 
35
-  $website_image = $website_image_path;
36
-  $website_image .= $rowlink['website_id'];
37
-  $website_image .= ".";
38
-  $website_image .= $rowlink['website_imgext'];
39
-  $website_description_text = trim($rowlink['description']);
35
+    $website_image = $website_image_path;
36
+    $website_image .= $rowlink['website_id'];
37
+    $website_image .= ".";
38
+    $website_image .= $rowlink['website_imgext'];
39
+    $website_description_text = trim($rowlink['description']);
40 40
 
41 41
 $smarty->assign('website', array(
42 42
     'website_name' => $rowlink['website_name'],
Please login to merge, or discard this patch.
public/php/common/tiles/latest_comments_tile.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -59,18 +59,18 @@
 block discarded – undo
59 59
     $smarty->append(
60 60
         'comments',
61 61
         array('comment' => $oldcomment,
62
-              'comment_edit' => $comment,
63
-              'comment_id' => $query_comment['comment_id'],
64
-              'date' => $date,
65
-              'game' => $query_comment['game_name'],
66
-              'game_id' => $query_comment['game_id'],
67
-              'user_name' => $query_comment['userid'],
68
-              'user_id' => $query_comment['user_id'],
69
-              'user_fb' => $query_comment['user_fb'],
70
-              'user_website' => $query_comment['user_website'],
71
-              'user_twitter' => $query_comment['user_twitter'],
72
-              'user_af' => $query_comment['user_af'],
73
-              'show_email' => $query_comment['show_email'],
74
-              'email' => $query_comment['email'])
62
+                'comment_edit' => $comment,
63
+                'comment_id' => $query_comment['comment_id'],
64
+                'date' => $date,
65
+                'game' => $query_comment['game_name'],
66
+                'game_id' => $query_comment['game_id'],
67
+                'user_name' => $query_comment['userid'],
68
+                'user_id' => $query_comment['user_id'],
69
+                'user_fb' => $query_comment['user_fb'],
70
+                'user_website' => $query_comment['user_website'],
71
+                'user_twitter' => $query_comment['user_twitter'],
72
+                'user_af' => $query_comment['user_af'],
73
+                'show_email' => $query_comment['show_email'],
74
+                'email' => $query_comment['email'])
75 75
     );
76 76
 }
Please login to merge, or discard this patch.
public/php/common/tiles/db_latest_comments_tile.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -80,19 +80,19 @@
 block discarded – undo
80 80
         $smarty->append(
81 81
             'comments',
82 82
             array('comment' => $oldcomment,
83
-                  'comment_edit' => $comment,
84
-                  'comment_id' => $query_comment['comment_id'],
85
-                  'date' => $date,
86
-                  'game' => $query_comment['game_name'],
87
-                  'game_id' => $query_comment['game_id'],
88
-                  'user_name' => $query_comment['userid'],
89
-                  'user_id' => $query_comment['user_id'],
90
-                  'user_fb' => $query_comment['user_fb'],
91
-                  'user_website' => $query_comment['user_website'],
92
-                  'user_twitter' => $query_comment['user_twitter'],
93
-                  'user_af' => $query_comment['user_af'],
94
-                  'show_email' => $query_comment['show_email'],
95
-                  'email' => $query_comment['email'])
83
+                    'comment_edit' => $comment,
84
+                    'comment_id' => $query_comment['comment_id'],
85
+                    'date' => $date,
86
+                    'game' => $query_comment['game_name'],
87
+                    'game_id' => $query_comment['game_id'],
88
+                    'user_name' => $query_comment['userid'],
89
+                    'user_id' => $query_comment['user_id'],
90
+                    'user_fb' => $query_comment['user_fb'],
91
+                    'user_website' => $query_comment['user_website'],
92
+                    'user_twitter' => $query_comment['user_twitter'],
93
+                    'user_af' => $query_comment['user_af'],
94
+                    'show_email' => $query_comment['show_email'],
95
+                    'email' => $query_comment['email'])
96 96
         );
97 97
     }
98 98
 
Please login to merge, or discard this patch.
public/php/common/tiles/tile_bug_report.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
     $smarty->append(
22 22
         'bug_report_type',
23 23
         array('bug_report_type_id' => $sql_bug_report_type['bug_report_type_id'],
24
-                   'bug_report_type' => $sql_bug_report_type['bug_report_type'])
24
+                    'bug_report_type' => $sql_bug_report_type['bug_report_type'])
25 25
     );
26 26
 }
Please login to merge, or discard this patch.
public/php/common/tiles/latest_reviews_tile.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -72,12 +72,12 @@
 block discarded – undo
72 72
     $smarty->append(
73 73
         'recent_reviews',
74 74
         array('review_name' => $sql_recent_reviews['game_name'],
75
-           'review_id' => $sql_recent_reviews['review_id'],
76
-           'review_date' => $review_date,
77
-           'user_id' => $sql_recent_reviews['user_id'],
78
-           'user_name' => $sql_recent_reviews['userid'],
79
-           'game_id' => $sql_recent_reviews['game_id'],
80
-           'review_text' => $review_text,
81
-           'review_img' => $v_review_image)
75
+            'review_id' => $sql_recent_reviews['review_id'],
76
+            'review_date' => $review_date,
77
+            'user_id' => $sql_recent_reviews['user_id'],
78
+            'user_name' => $sql_recent_reviews['userid'],
79
+            'game_id' => $sql_recent_reviews['game_id'],
80
+            'review_text' => $review_text,
81
+            'review_img' => $v_review_image)
82 82
     );
83 83
 }
Please login to merge, or discard this patch.