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

@@ 310-310 (lines=1) @@
307
			if($val == 'birthday') $args->birthday_ui = Context::get('birthday_ui');
308
		}
309
		$args->birthday = intval(strtr($args->birthday, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
310
		if(!$args->birthday && $args->birthday_ui) $args->birthday = intval(strtr($args->birthday_ui, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
311
312
		$args->find_account_answer = Context::get('find_account_answer');
313
		$args->allow_mailing = Context::get('allow_mailing');
@@ 540-540 (lines=1) @@
537
		$logged_info = Context::get('logged_info');
538
		$args->member_srl = $logged_info->member_srl;
539
		$args->birthday = intval(strtr($args->birthday, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
540
		if(!$args->birthday && $args->birthday_ui) $args->birthday = intval(strtr($args->birthday_ui, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
541
		// Remove some unnecessary variables from all the vars
542
		$all_args = Context::getRequestVars();
543
		unset($all_args->module);