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

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

@@ 147-154 (lines=8) @@
144
		}
145
146
		$this->setMessage('success_updated', 'info');
147
		if(Context::get('success_return_url'))
148
		{
149
			$this->setRedirectUrl(Context::get('success_return_url'));
150
		}
151
		else
152
		{
153
			$this->setRedirectUrl(getNotEncodedUrl('', 'module', 'admin', 'act', 'dispAddonAdminIndex'));
154
		}
155
	}
156
157
	/**

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

@@ 177-184 (lines=8) @@
174
		}
175
176
		$this->setMessage('success_updated');
177
		if (Context::get('success_return_url'))
178
		{
179
			$this->setRedirectUrl(Context::get('success_return_url'));
180
		}
181
		else
182
		{
183
			$this->setRedirectUrl(getNotEncodedUrl('', 'module', 'admin', 'act', 'dispBoardAdminCategoryInfo', 'module_srl', $output->get('module_srl')));
184
		}
185
	}
186
}
187