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 — master ( a62d10...64b546 )
by
unknown
9s
created
web/app/themes/stash/content-none.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,12 @@
 block discarded – undo
23 23
 			<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'stash' ); ?></p>
24 24
 			<?php get_search_form(); ?>
25 25
 
26
-		<?php else : ?>
26
+		<?php else {
27
+    : ?>
27 28
 
28
-			<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'stash' ); ?></p>
29
+			<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'stash' );
30
+}
31
+?></p>
29 32
 			<?php get_search_form(); ?>
30 33
 
31 34
 		<?php endif; ?>
Please login to merge, or discard this patch.
web/app/themes/stash/inc/functions/advancedCustomSearch.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,8 +55,10 @@
 block discarded – undo
55 55
         foreach ($list_searcheable_acf as $searcheable_acf) :
56 56
             if ($searcheable_acf == $list_searcheable_acf[0]):
57 57
                 $where .= " (meta_key LIKE '%" . $searcheable_acf . "%' AND meta_value LIKE '%$tag%') ";
58
-            else :
58
+            else {
59
+                :
59 60
                 $where .= " OR (meta_key LIKE '%" . $searcheable_acf . "%' AND meta_value LIKE '%$tag%') ";
61
+            }
60 62
             endif;
61 63
         endforeach;
62 64
 
Please login to merge, or discard this patch.