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

@@ 288-288 (lines=1) @@
285
			if($val == 'birthday') $args->birthday_ui = Context::get('birthday_ui');
286
		}
287
		$args->birthday = intval(strtr($args->birthday, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
288
		if(!$args->birthday && $args->birthday_ui) $args->birthday = intval(strtr($args->birthday_ui, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
289
290
		$args->find_account_answer = Context::get('find_account_answer');
291
		$args->allow_mailing = Context::get('allow_mailing');
@@ 518-518 (lines=1) @@
515
		$logged_info = Context::get('logged_info');
516
		$args->member_srl = $logged_info->member_srl;
517
		$args->birthday = intval(strtr($args->birthday, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
518
		if(!$args->birthday && $args->birthday_ui) $args->birthday = intval(strtr($args->birthday_ui, array('-'=>'', '/'=>'', '.'=>'', ' '=>'')));
519
		// Remove some unnecessary variables from all the vars
520
		$all_args = Context::getRequestVars();
521
		unset($all_args->module);