Passed
Push — master ( 395e1e...8a0601 )
by Nicolas
08:55
created
database_scripts/legacy/2018-02-26_populate_release_enhan_falcon.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 AND table_name = 'game_release_system_enhanced' LIMIT 1";
20 20
 
21 21
 // Database change
22
-$database_update_sql ="../../admin/administration/database_scripts/legacy/2018-06-11_populate_release_enhan_falcon_addition.php";
22
+$database_update_sql = "../../admin/administration/database_scripts/legacy/2018-06-11_populate_release_enhan_falcon_addition.php";
23 23
 
24 24
 /*"INSERT INTO game_release_system_enhanced(`system_id`, `game_release_id`)
25 25
 SELECT
Please login to merge, or discard this patch.
public/php/admin/administration/database_scripts/271/addition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
   ) ENGINE=InnoDB
9 9
   CHARSET=utf8
10 10
   COMMENT 'Laravel DB migrations'")
11
-    or die("Unable to create migrations table: " . $mysqli->error);
11
+    or die("Unable to create migrations table: ".$mysqli->error);
12 12
 
13 13
 $mysqli->query("INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
14 14
 (1, '2020_10_17_161643_create_andreas_table', 1),
@@ -221,4 +221,4 @@  discard block
 block discarded – undo
221 221
 (208, '2020_10_17_161644_add_foreign_keys_to_game_table', 1),
222 222
 (209, '2020_10_17_161644_add_foreign_keys_to_media_scan_table', 1),
223 223
 (210, '2020_10_17_161644_add_foreign_keys_to_media_table', 1);")
224
-    or die("Unable to insert migrations: " . $mysqli->error);
224
+    or die("Unable to insert migrations: ".$mysqli->error);
Please login to merge, or discard this patch.
public/php/admin/administration/database_update_legacy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,4 +247,4 @@
 block discarded – undo
247 247
 mysqli_commit($mysqli) or die("Unable to commit transaction: ".$mysqli->error);
248 248
 
249 249
 //Send all smarty variables to the templates
250
-$smarty->display("file:" . $cpanel_template_folder . "administration/database_update.html");
250
+$smarty->display("file:".$cpanel_template_folder."administration/database_update.html");
Please login to merge, or discard this patch.
public/php/admin/administration/bug_report.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,4 +42,4 @@
 block discarded – undo
42 42
 }
43 43
 
44 44
 //Send all smarty variables to the templates
45
-$smarty->display("file:" . $cpanel_template_folder . "administration/bug_report.html");
45
+$smarty->display("file:".$cpanel_template_folder."administration/bug_report.html");
Please login to merge, or discard this patch.
public/php/admin/administration/ajax_comments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,4 +53,4 @@
 block discarded – undo
53 53
 ));
54 54
 
55 55
 //Send all smarty variables to the templates
56
-$smarty->display("file:" . $cpanel_template_folder . "administration/ajax_comments.html");
56
+$smarty->display("file:".$cpanel_template_folder."administration/ajax_comments.html");
Please login to merge, or discard this patch.
public/php/admin/interviews/interviews_main.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     LEFT JOIN users on (interview_main.user_id = users.user_id)
63 63
     LEFT JOIN individuals on (interview_main.ind_id = individuals.ind_id)
64 64
     LEFT JOIN individual_text on (interview_main.ind_id = individual_text.ind_id)
65
-    ORDER BY interview_text.interview_date DESC LIMIT  " . $v_counter . ", 5")
65
+    ORDER BY interview_text.interview_date DESC LIMIT  " . $v_counter.", 5")
66 66
     or die("Error - Couldn't query interview data");
67 67
 
68 68
 while ($query_interview = $sql_interview->fetch_array(MYSQLI_BOTH)) {
@@ -112,13 +112,13 @@  discard block
 block discarded – undo
112 112
 //Check if back arrow is needed
113 113
 if ($v_counter > 0) {
114 114
     // Build the link
115
-    $v_linkback = ('?v_counter=' . ($v_counter - 5));
115
+    $v_linkback = ('?v_counter='.($v_counter - 5));
116 116
 }
117 117
 
118 118
 //Check if we need to place a next arrow
119 119
 if ($v_rows > ($v_counter + 5)) {
120 120
     //Build the link
121
-    $v_linknext = ('?v_counter=' . ($v_counter + 5));
121
+    $v_linknext = ('?v_counter='.($v_counter + 5));
122 122
 }
123 123
 
124 124
 if (empty($c_counter)) {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 $smarty->assign("user_id", $_SESSION['user_id']);
142 142
 
143 143
 //Send all smarty variables to the templates
144
-$smarty->display("file:" . $cpanel_template_folder . "interviews/interviews_main.html");
144
+$smarty->display("file:".$cpanel_template_folder."interviews/interviews_main.html");
145 145
 
146 146
 //close the connection
147 147
 mysqli_close($mysqli);
Please login to merge, or discard this patch.
public/php/admin/trivia/ajax_trivia_quotes.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     $smarty->assign('smarty_action', 'trivia_quote_edit');
28 28
     //Send all smarty variables to the templates
29
-    $smarty->display("file:" . $cpanel_template_folder . "trivia/ajax_trivia_quotes_edit.html");
29
+    $smarty->display("file:".$cpanel_template_folder."trivia/ajax_trivia_quotes_edit.html");
30 30
 }
31 31
 
32 32
 if (isset($trivia_quote_id) and $action == "display_trivia_quoute") {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     $smarty->assign('smarty_action', 'display_trivia_quoute');
41 41
     //Send all smarty variables to the templates
42
-    $smarty->display("file:" . $cpanel_template_folder . "trivia/ajax_trivia_quotes_edit.html");
42
+    $smarty->display("file:".$cpanel_template_folder."trivia/ajax_trivia_quotes_edit.html");
43 43
 }
44 44
 
45 45
 if (isset($trivia_id) and $action == "did_you_know_edit_view") {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     $smarty->assign('smarty_action', 'did_you_know_edit_view');
52 52
     //Send all smarty variables to the templates
53
-    $smarty->display("file:" . $cpanel_template_folder . "trivia/ajax_trivia_quotes_edit.html");
53
+    $smarty->display("file:".$cpanel_template_folder."trivia/ajax_trivia_quotes_edit.html");
54 54
 }
55 55
 
56 56
 if (isset($spotlight_id) and $action == "spotlight_edit_view") {
@@ -75,5 +75,5 @@  discard block
 block discarded – undo
75 75
 
76 76
     $smarty->assign('smarty_action', 'spotlight_edit_view');
77 77
     //Send all smarty variables to the templates
78
-    $smarty->display("file:" . $cpanel_template_folder . "trivia/ajax_trivia_quotes_edit.html");
78
+    $smarty->display("file:".$cpanel_template_folder."trivia/ajax_trivia_quotes_edit.html");
79 79
 }
Please login to merge, or discard this patch.
public/php/admin/magazine/magazine_add.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,4 +33,4 @@
 block discarded – undo
33 33
 $smarty->assign('magazine_add_tpl', '1');
34 34
 
35 35
 //Send all smarty variables to the templates
36
-$smarty->display("file:" . $cpanel_template_folder . "magazine/magazine_add.html");
36
+$smarty->display("file:".$cpanel_template_folder."magazine/magazine_add.html");
Please login to merge, or discard this patch.
public/php/admin/magazine/magazine_issue_edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,4 +47,4 @@
 block discarded – undo
47 47
 ));
48 48
 
49 49
 //Send all smarty variables to the templates
50
-$smarty->display("file:" . $cpanel_template_folder . "magazine/magazine_issue_edit.html");
50
+$smarty->display("file:".$cpanel_template_folder."magazine/magazine_issue_edit.html");
Please login to merge, or discard this patch.