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

modules/comment/comment.controller.php 1 location

@@ 1304-1311 (lines=8) @@
1301
	function procCommentInsertModuleConfig()
1302
	{
1303
		$module_srl = Context::get('target_module_srl');
1304
		if(preg_match('/^([0-9,]+)$/', $module_srl))
1305
		{
1306
			$module_srl = explode(',', $module_srl);
1307
		}
1308
		else
1309
		{
1310
			$module_srl = array($module_srl);
1311
		}
1312
1313
		$comment_config = new stdClass();
1314
		$comment_config->comment_count = (int) Context::get('comment_count');

modules/document/document.controller.php 1 location

@@ 2346-2347 (lines=2) @@
2343
	function procDocumentInsertModuleConfig()
2344
	{
2345
		$module_srl = Context::get('target_module_srl');
2346
		if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl);
2347
		else $module_srl = array($module_srl);
2348
2349
		$document_config = new stdClass();
2350
		$document_config->use_history = Context::get('use_history');

modules/editor/editor.controller.php 1 location

@@ 85-86 (lines=2) @@
82
	{
83
		$module_srl = Context::get('target_module_srl');
84
		// To configure many of modules at once
85
		if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl);
86
		else $module_srl = array($module_srl);
87
88
		$editor_config = new stdClass;
89
		$editor_config->editor_skin = Context::get('editor_skin');

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

@@ 120-121 (lines=2) @@
117
		// Get variables
118
		$module_srl = Context::get('target_module_srl');
119
		// In order to configure multiple modules at once
120
		if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl);
121
		else $module_srl = array($module_srl);
122
123
		$download_grant = Context::get('download_grant');
124

modules/point/point.admin.controller.php 2 locations

@@ 173-174 (lines=2) @@
170
		$module_srl = Context::get('target_module_srl');
171
		if(!$module_srl) return new Object(-1, 'msg_invalid_request');
172
		// In case of batch configuration of several modules
173
		if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl);
174
		else $module_srl = array($module_srl);
175
		// Save configurations
176
		$oModuleController = getController('module');
177
		for($i=0;$i<count($module_srl);$i++)
@@ 385-386 (lines=2) @@
382
		$module_srl = Context::get('module_srls');
383
		if(!$module_srl) return new Object(-1, 'msg_invalid_request');
384
		// In case of batch configuration of several modules
385
		if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl);
386
		else $module_srl = array($module_srl);
387
		// Save configurations
388
		$oModuleController = getController('module');
389
		for($i=0;$i<count($module_srl);$i++)