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

modules/member/member.controller.php 2 locations

@@ 304-308 (lines=5) @@
301
		}
302
303
		$args = new stdClass;
304
		foreach($getVars as $val)
305
		{
306
			$args->{$val} = Context::get($val);
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
@@ 531-535 (lines=5) @@
528
		}
529
530
		$args = new stdClass;
531
		foreach($getVars as $val)
532
		{
533
			$args->{$val} = Context::get($val);
534
			if($val == 'birthday') $args->birthday_ui = Context::get('birthday_ui');
535
		}
536
		// Login Information
537
		$logged_info = Context::get('logged_info');
538
		$args->member_srl = $logged_info->member_srl;