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.

Code Duplication    Length = 3-3 lines in 3 locations

contrib/mailClassifier/function.php 1 location

@@ 39-41 (lines=3) @@
36
	// Order results starting from newest message
37
	if ( empty($m_search) ) {
38
		syslog (LOG_INFO,$cf['user'].": No suitable mail found in <$folder> folder.");
39
	        if ( $ierr = imap_errors() )
40
	                foreach ( $ierr as $thiserr )
41
	                        syslog (LOG_ERR, $cf['user'].": IMAP Error: $thiserr");
42
	        if ( $ierr = imap_alerts() )
43
	                foreach ( $ierr as $thiserr )
44
	                        syslog (LOG_ALERT, $cf['user'].": IMAP Alert: $thiserr");

contrib/ipImap/function.php 2 locations

@@ 370-372 (lines=3) @@
367
	// Order results starting from newest message
368
	if ( empty($m_search) ) {
369
		syslog (LOG_INFO,$cf['syslog']['user'].": No mail found in $type folder. No reports written for $type.");
370
	        if ( $ierr = imap_errors() )
371
	                foreach ( $ierr as $thiserr )
372
	                        syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
373
	        if ( $ierr = imap_alerts() )
374
	                foreach ( $ierr as $thiserr )
375
	                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");
@@ 569-571 (lines=3) @@
566
	fclose($fpb);
567
	syslog (LOG_INFO,$cf['syslog']['user'].': Report files written. Listing job for '.$type.' terminated.');
568
569
	if ( $ierr = imap_errors() )
570
		foreach ( $ierr as $thiserr )
571
			syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
572
	if ( $ierr = imap_alerts() )
573
                foreach ( $ierr as $thiserr )
574
                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");