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
Pull Request — 2.9 (#1422)
by
unknown
14:08
created
phpmyfaq/admin/category.main.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -322,26 +322,26 @@  discard block
 block discarded – undo
322 322
         // add faq to category (always)
323 323
         printf('
324 324
            <a class="btn btn-info btn-sm" href="?action=editentry&amp;cat=%s&amp;lang=%s"><span title="%s" class="fa fa-file-text-o fa-fw"></span></a> ',
325
-           $cat['id'],
326
-           $cat['lang'],
327
-           $PMF_LANG['ad_quick_entry']
325
+            $cat['id'],
326
+            $cat['lang'],
327
+            $PMF_LANG['ad_quick_entry']
328 328
         );
329 329
 
330 330
         if ($cat['lang'] == $lang) {
331 331
             // add sub category (if current language)
332
-           printf('
332
+            printf('
333 333
                <a class="btn btn-info btn-sm" href="?action=addcategory&amp;cat=%s&amp;lang=%s"><span title="%s" class="fa fa-plus fa-fw"></span></a> ',
334
-               $cat['id'],
335
-               $cat['lang'],
336
-               $PMF_LANG['ad_quick_category']
337
-           );
334
+                $cat['id'],
335
+                $cat['lang'],
336
+                $PMF_LANG['ad_quick_category']
337
+            );
338 338
 
339
-           // rename (sub) category (if current language)
340
-           printf('
339
+            // rename (sub) category (if current language)
340
+            printf('
341 341
                <a class="btn btn-info btn-sm" href="?action=editcategory&amp;cat=%s"><span title="%s" class="fa fa-edit fa-fw"></a> ',
342
-               $cat['id'],
343
-               $PMF_LANG['ad_kateg_rename']
344
-           );
342
+                $cat['id'],
343
+                $PMF_LANG['ad_kateg_rename']
344
+            );
345 345
         }
346 346
 
347 347
         // translate category (always)
@@ -365,20 +365,20 @@  discard block
 block discarded – undo
365 365
 
366 366
         if ($cat['lang'] == $lang) {
367 367
             // cut category (if current language)
368
-           printf(
369
-               '<a class="btn btn-warning btn-sm" href="?action=cutcategory&amp;cat=%s"><span title="%s" class="fa fa-cut fa-fw"></a> ',
370
-               $cat['id'],
371
-               $PMF_LANG['ad_categ_cut']
372
-           );
368
+            printf(
369
+                '<a class="btn btn-warning btn-sm" href="?action=cutcategory&amp;cat=%s"><span title="%s" class="fa fa-cut fa-fw"></a> ',
370
+                $cat['id'],
371
+                $PMF_LANG['ad_categ_cut']
372
+            );
373 373
 
374 374
             if ($category->numParent($cat['parent_id']) > 1) {
375 375
                 // move category (if current language) AND more than 1 category at the same level)
376
-              printf(
377
-                  '<a class="btn btn-warning btn-sm" href="?action=movecategory&amp;cat=%s&amp;parent_id=%s"><span title="%s" class="fa fa-sort fa-fw"></a> ',
378
-                  $cat['id'],
379
-                  $cat['parent_id'],
380
-                  $PMF_LANG['ad_categ_move']
381
-              );
376
+                printf(
377
+                    '<a class="btn btn-warning btn-sm" href="?action=movecategory&amp;cat=%s&amp;parent_id=%s"><span title="%s" class="fa fa-sort fa-fw"></a> ',
378
+                    $cat['id'],
379
+                    $cat['parent_id'],
380
+                    $PMF_LANG['ad_categ_move']
381
+                );
382 382
             }
383 383
         }
384 384
 
Please login to merge, or discard this patch.
phpmyfaq/admin/record.edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             $queryString = 'saveentry&amp;id='.$faqData['id'];
122 122
         } else {
123 123
             $queryString = 'insertentry';
124
-            if(isset($categoryId)){ 
124
+            if (isset($categoryId)) { 
125 125
                 $categories = $categoryId;
126 126
             } 
127 127
         }
Please login to merge, or discard this patch.