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 = 1-4 lines in 4 locations

modules/communication/communication.controller.php 1 location

@@ 34-37 (lines=4) @@
31
		$args = new stdClass();
32
		$args->allow_message = Context::get('allow_message');
33
34
		if(!in_array($args->allow_message, array('Y', 'N', 'F')))
35
		{
36
			$args->allow_message = 'Y';
37
		}
38
39
		$logged_info = Context::get('logged_info');
40
		$args->member_srl = $logged_info->member_srl;

modules/importer/importer.admin.controller.php 1 location

@@ 410-410 (lines=1) @@
407
			if($obj->allow_mailing!='Y') $obj->allow_mailing = 'N';
408
			// Set the message option
409
			$obj->allow_message = 'Y';
410
			if(!in_array($obj->allow_message, array('Y','N','F'))) $obj->allow_message= 'Y';
411
			// Get member-join date if the last login time is not found
412
			if(!$obj->last_login) $obj->last_login = $obj->regdate;
413
			// Get a member_srl

modules/member/member.controller.php 2 locations

@@ 1947-1947 (lines=1) @@
1944
		// Control of essential parameters
1945
		if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
1946
		if($args->denied!='Y') $args->denied = 'N';
1947
		if(!$args->allow_message || ($args->allow_message && !in_array($args->allow_message, array('Y','N','F')))) $args->allow_message = 'Y';
1948
1949
		if($logged_info->is_admin == 'Y')
1950
		{
@@ 2125-2125 (lines=1) @@
2122
		if(!$this->memberInfo) $this->memberInfo = $oMemberModel->getMemberInfoByMemberSrl($args->member_srl);
2123
		// Control of essential parameters
2124
		if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
2125
		if($args->allow_message && !in_array($args->allow_message, array('Y','N','F'))) $args->allow_message = 'Y';
2126
2127
		if($logged_info->is_admin == 'Y')
2128
		{