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

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

@@ 186-200 (lines=15) @@
183
	/**
184
	 * @brief Delete page
185
	 */
186
	function procPageAdminDelete()
187
	{
188
		$module_srl = Context::get('module_srl');
189
		// Get an original
190
		$oModuleController = getController('module');
191
		$output = $oModuleController->deleteModule($module_srl);
192
		if(!$output->toBool()) return $output;
193
194
		$this->add('module','page');
195
		$this->add('page',Context::get('page'));
196
		$this->setMessage('success_deleted');
197
198
		$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispPageAdminContent');
199
		$this->setRedirectUrl($returnUrl);
200
	}
201
202
	/**
203
	 * @brief Additional pages of basic information

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

@@ 668-681 (lines=14) @@
665
	 * Update user group information
666
	 * @return void|BaseObject (void : success, BaseObject : fail)
667
	 */
668
	function procMemberAdminDeleteGroup()
669
	{
670
		$group_srl = Context::get('group_srl');
671
672
		$output = $this->deleteGroup($group_srl);
673
		if(!$output->toBool()) return $output;
674
675
		$this->add('group_srl','');
676
		$this->add('page',Context::get('page'));
677
		$this->setMessage('success_deleted');
678
679
		$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispMemberAdminGroupList');
680
		$this->setRedirectUrl($returnUrl);
681
	}
682
683
	/**
684
	 * Add a join form