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

modules/comment/comment.controller.php 1 location

@@ 1279-1295 (lines=17) @@
1276
	 * @param strgin $target
1277
	 * @return void
1278
	 */
1279
	function addCommentPopupMenu($url, $str, $icon = '', $target = 'self')
1280
	{
1281
		$comment_popup_menu_list = Context::get('comment_popup_menu_list');
1282
		if(!is_array($comment_popup_menu_list))
1283
		{
1284
			$comment_popup_menu_list = array();
1285
		}
1286
1287
		$obj = new stdClass();
1288
		$obj->url = $url;
1289
		$obj->str = $str;
1290
		$obj->icon = $icon;
1291
		$obj->target = $target;
1292
		$comment_popup_menu_list[] = $obj;
1293
1294
		Context::set('comment_popup_menu_list', $comment_popup_menu_list);
1295
	}
1296
1297
	/**
1298
	 * Save the comment extension form for each module

modules/document/document.controller.php 1 location

@@ 2129-2142 (lines=14) @@
2126
	 * @param string $target
2127
	 * @return void
2128
	 */
2129
	function addDocumentPopupMenu($url, $str, $icon = '', $target = 'self')
2130
	{
2131
		$document_popup_menu_list = Context::get('document_popup_menu_list');
2132
		if(!is_array($document_popup_menu_list)) $document_popup_menu_list = array();
2133
2134
		$obj = new stdClass();
2135
		$obj->url = $url;
2136
		$obj->str = $str;
2137
		$obj->icon = $icon;
2138
		$obj->target = $target;
2139
		$document_popup_menu_list[] = $obj;
2140
2141
		Context::set('document_popup_menu_list', $document_popup_menu_list);
2142
	}
2143
2144
	/**
2145
	 * Saved in the session when an administrator selects a post

modules/member/member.controller.php 1 location

@@ 1962-1975 (lines=14) @@
1959
	/**
1960
	 * Nickname and click Log In to add a pop-up menu that appears when the method
1961
	 */
1962
	function addMemberPopupMenu($url, $str, $icon = '', $target = 'self')
1963
	{
1964
		$member_popup_menu_list = Context::get('member_popup_menu_list');
1965
		if(!is_array($member_popup_menu_list)) $member_popup_menu_list = array();
1966
1967
		$obj = new stdClass;
1968
		$obj->url = $url;
1969
		$obj->str = $str;
1970
		$obj->icon = $icon;
1971
		$obj->target = $target;
1972
		$member_popup_menu_list[] = $obj;
1973
1974
		Context::set('member_popup_menu_list', $member_popup_menu_list);
1975
	}
1976
1977
	/**
1978
	 * Add users to the member table