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

modules/member/member.controller.php 2 locations

@@ 337-337 (lines=1) @@
334
			if($val == 'birthday') $args->birthday_ui = Context::get('birthday_ui');
335
		}
336
		$args->birthday = intval(strtr($args->birthday, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
337
		if(!$args->birthday && $args->birthday_ui) $args->birthday = intval(strtr($args->birthday_ui, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
338
339
		$args->find_account_answer = Context::get('find_account_answer');
340
		$args->allow_mailing = Context::get('allow_mailing');
@@ 571-571 (lines=1) @@
568
		$logged_info = Context::get('logged_info');
569
		$args->member_srl = $logged_info->member_srl;
570
		$args->birthday = intval(strtr($args->birthday, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
571
		if(!$args->birthday && $args->birthday_ui) $args->birthday = intval(strtr($args->birthday_ui, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
572
573
		// Remove some unnecessary variables from all the vars
574
		$all_args = Context::getRequestVars();