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
Push — 3.0 ( b47f57...ce9d23 )
by Thorsten
03:17
created
phpmyfaq/src/phpMyFAQ/Db/Sqlsrv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
             'UID' => $user,
106 106
             'PWD' => $passwd,
107 107
             'Database' => $database,
108
-            'CharacterSet' => 'UTF-8', );
108
+            'CharacterSet' => 'UTF-8',);
109 109
     }
110 110
 
111 111
     /**
Please login to merge, or discard this patch.
phpmyfaq/admin/footer.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
24 24
         $protocol = 'https';
25 25
     }
26
-    header('Location: ' . $protocol . '://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME']));
26
+    header('Location: '.$protocol.'://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME']));
27 27
     exit();
28 28
 }
29 29
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -226,12 +226,15 @@
 block discarded – undo
226 226
                 action: 'ajax',
227 227
                 ajax: 'recordAdd'
228 228
               };
229
-                <?php else: ?>
229
+                <?php else {
230
+    : ?>
230 231
               var data = {
231 232
                 action: 'ajax',
232 233
                 ajax: 'recordSave'
233 234
               };
234
-                <?php endif; ?>
235
+                <?php endif;
236
+}
237
+?>
235 238
               $.each($('#faqEditor').serializeArray(), function (i, field) {
236 239
                 data[field.name] = field.value;
237 240
               });
Please login to merge, or discard this patch.
phpmyfaq/attachment.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
26 26
         $protocol = 'https';
27 27
     }
28
-    header('Location: ' . $protocol . '://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME']));
28
+    header('Location: '.$protocol.'://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME']));
29 29
     exit();
30 30
 }
31 31
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $attachment->rawOut();
99 99
         exit(0);
100 100
     } catch (Exception $e) {
101
-        $attachmentErrors[] = $PMF_LANG['msgAttachmentInvalid'] . ' (' . $e->getMessage() . ')';
101
+        $attachmentErrors[] = $PMF_LANG['msgAttachmentInvalid'].' ('.$e->getMessage().')';
102 102
     }
103 103
 } else {
104 104
     $attachmentErrors[] = $PMF_LANG['err_NotAuth'];
Please login to merge, or discard this patch.