GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch master (69a36c)
by Marco
02:57
created
delist.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 require_once('config.php');
3 3
 require_once('function.php');
4
-$typedesc=$_POST['type'];
4
+$typedesc = $_POST['type'];
5 5
         $type = $tables["$typedesc"]['field'];
6 6
         $table = $tables["$typedesc"]['name'];
7 7
 ?>
@@ -11,14 +11,14 @@  discard block
 block discarded – undo
11 11
 $user = username();
12 12
 $mysqli = new mysqli($dbhost, $userdb, $pwd, $db, $dbport);
13 13
         if ($mysqli->connect_error) {
14
-            syslog (LOG_EMERG, $user.': Connect Error (' . $mysqli->connect_errno . ') '
14
+            syslog(LOG_EMERG, $user.': Connect Error ('.$mysqli->connect_errno.') '
15 15
                     . $mysqli->connect_error);
16
-            exit ($user.': Connect Error (' . $mysqli->connect_errno . ') '
16
+            exit ($user.': Connect Error ('.$mysqli->connect_errno.') '
17 17
                     . $mysqli->connect_error);
18 18
 }
19
-syslog(LOG_INFO, $user.': Successfully connected to ' . $mysqli->host_info) ;
19
+syslog(LOG_INFO, $user.': Successfully connected to '.$mysqli->host_info);
20 20
 
21
-if (changestatus($mysqli,username(),$_POST['value'],'0',$type,$table))
21
+if (changestatus($mysqli, username(), $_POST['value'], '0', $type, $table))
22 22
  print 'OK '.$_POST["type"].' &lt;'.$_POST['value'].'&gt; delisted.';
23 23
 else
24 24
  print 'ERROR in delist &lt;'.$_POST['value'].'&gt;; check log';
Please login to merge, or discard this patch.
relistForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2
-        $typedesc=$_POST["typedesc"];
2
+        $typedesc = $_POST["typedesc"];
3 3
         $type = $tables["$typedesc"]['field'];
4 4
         $table = $tables["$typedesc"]['name'];
5 5
 	$adm = unserialize($_POST["adm"]);
6
-	if (in_array($_POST["user"],array_keys(array_filter($adm)))) $extopt = '<option value="MONTH">MONTHS</option><option value="YEAR">YEARS</option>';
6
+	if (in_array($_POST["user"], array_keys(array_filter($adm)))) $extopt = '<option value="MONTH">MONTHS</option><option value="YEAR">YEARS</option>';
7 7
 	else $extopt = NULL;
8 8
 ?>
9 9
 
Please login to merge, or discard this patch.
lookup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 <h1> DNSBL Lookup</h1> 
12 12
 <?php
13 13
 
14
-$_POST['Value'] = str_replace('_','.',array_keys($_GET)[0]);
14
+$_POST['Value'] = str_replace('_', '.', array_keys($_GET)[0]);
15 15
 $_POST['genere'] = 'Spam IP';
16 16
 require_once('result.php');
17 17
 ?>
Please login to merge, or discard this patch.