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

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

@@ 286-291 (lines=6) @@
283
		}
284
285
		$oCacheHandler = CacheHandler::getInstance('object', null, true);
286
		if($oCacheHandler->isSupport())
287
		{
288
			$object_key = 'mid_info:' . $module_info->module_srl;
289
			$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
290
			$oCacheHandler->delete($cache_key);
291
		}
292
	}
293
294
	function procPageAdminArticleDocumentInsert()

modules/module/module.model.php 2 locations

@@ 1803-1808 (lines=6) @@
1800
				}
1801
				$extra_vars[$val->module_srl]->{$val->name} = $val->value;
1802
1803
				if($oCacheHandler->isSupport())
1804
				{
1805
					$object_key = 'module_extra_vars:'.$val->module_srl;
1806
					$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
1807
					$oCacheHandler->put($cache_key, $extra_vars[$val->module_srl]);
1808
				}
1809
			}
1810
		}
1811
@@ 1973-1978 (lines=6) @@
1970
		$skin_vars = false;
1971
		// cache controll
1972
		$oCacheHandler = CacheHandler::getInstance('object', null, true);
1973
		if($oCacheHandler->isSupport())
1974
		{
1975
			$object_key = 'module_mobile_skin_vars:'.$module_info->module_srl;
1976
			$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
1977
			$skin_vars = $oCacheHandler->get($cache_key);
1978
		}
1979
		if($skin_vars === false)
1980
		{
1981
			$args = new stdClass;