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

@@ 376-378 (lines=3) @@
373
	// Order results starting from newest message
374
	if ( empty($m_search) ) {
375
		syslog (LOG_INFO,$cf['syslog']['user'].": No mail found in $type folder. No reports written for $type.");
376
	        if ( $ierr = imap_errors() )
377
	                foreach ( $ierr as $thiserr )
378
	                        syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
379
	        if ( $ierr = imap_alerts() )
380
	                foreach ( $ierr as $thiserr )
381
	                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");
@@ 575-577 (lines=3) @@
572
	fclose($fpb);
573
	syslog (LOG_INFO,$cf['syslog']['user'].': Report files written. Listing job for '.$type.' terminated.');
574
575
	if ( $ierr = imap_errors() )
576
		foreach ( $ierr as $thiserr )
577
			syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
578
	if ( $ierr = imap_alerts() )
579
                foreach ( $ierr as $thiserr )
580
                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");