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 — 2.9 ( 4d4292...6c8ecb )
by Thorsten
06:32
created
phpmyfaq/admin/category.translate.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,9 +62,12 @@
 block discarded – undo
62 62
                     <input type="hidden" name="showcat" value="<?php echo $showcat ?>">
63 63
                     <?php if ($faqConfig->get('security.permLevel') !== 'basic'): ?>
64 64
                     <input type="hidden" name="restricted_groups[]" value="<?php echo $group_permission[0] ?>">
65
-                    <?php else: ?>
65
+                    <?php else {
66
+    : ?>
66 67
                     <input type="hidden" name="restricted_groups[]" value="-1">
67
-                    <?php endif; ?>
68
+                    <?php endif;
69
+}
70
+?>
68 71
                     <input type="hidden" name="restricted_users" value="<?php echo $user_permission[0] ?>">
69 72
                     <input type="hidden" name="csrf" value="<?php echo $user->getCsrfTokenFromSession() ?>">
70 73
                     <input type="hidden" name="active" value="<?php echo $category->categoryName[$id]['active'] ?>">
Please login to merge, or discard this patch.
phpmyfaq/admin/record.edit.php 1 patch
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -671,11 +671,14 @@  discard block
 block discarded – undo
671 671
                                         <input type="radio" name="active" value="no"
672 672
                                             <?php if (isset($sul)) { echo $sul; } ?>>
673 673
                                         <?php echo $PMF_LANG['ad_gen_no'] ?>
674
-                                            <?php else : ?>
674
+                                            <?php else {
675
+    : ?>
675 676
                                         <br>
676 677
                                         <input type="radio" name="active" value="no" checked>
677 678
                                         <?php echo $PMF_LANG['ad_gen_no'] ?>
678
-                                            <?php endif; ?>
679
+                                            <?php endif;
680
+}
681
+?>
679 682
                                     </label>
680 683
                             </div>
681 684
                         </div>
@@ -736,9 +739,12 @@  discard block
 block discarded – undo
736 739
                             </div>
737 740
                         </div>
738 741
                     </div>
739
-                    <?php else : ?>
742
+                    <?php else {
743
+    : ?>
740 744
                         <input type="hidden" name="grouppermission" value="all">
741
-                    <?php endif; ?>
745
+                    <?php endif;
746
+}
747
+?>
742 748
                     <div class="panel-heading">
743 749
                         <?php echo $PMF_LANG['ad_entry_userpermission']; ?>
744 750
                     </div>
Please login to merge, or discard this patch.
phpmyfaq/admin/footer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,12 +177,14 @@
 block discarded – undo
177 177
             action: 'ajax',
178 178
             ajax: 'recordAdd'
179 179
         };
180
-        <?php else: ?>
180
+        <?php else {
181
+    : ?>
181 182
         var data = {
182 183
             action: 'ajax',
183 184
             ajax: 'recordSave'
184 185
         };
185 186
         <?php endif;
187
+}
186 188
 ?>
187 189
 
188 190
         $.each($('#faqEditor').serializeArray(), function(i, field) {
Please login to merge, or discard this patch.
phpmyfaq/admin/dashboard.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,11 @@
 block discarded – undo
38 38
                     <a href="?action=config">
39 39
                         <?php if ($faqConfig->get('main.maintenanceMode')): ?>
40 40
                         <span class="label label-important"><?php print $PMF_LANG['msgMaintenanceMode']; ?></span>
41
-                        <?php else : ?>
42
-                        <span class="label label-success"><?php print $PMF_LANG['msgOnlineMode']; ?></span>
41
+                        <?php else {
42
+    : ?>
43
+                        <span class="label label-success"><?php print $PMF_LANG['msgOnlineMode'];
44
+}
45
+?></span>
43 46
                         <?php endif; ?>
44 47
                     </a>
45 48
                 </div>
Please login to merge, or discard this patch.