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

@@ 1894-1907 (lines=14) @@
1891
	/**
1892
	 * Nickname and click Log In to add a pop-up menu that appears when the method
1893
	 */
1894
	function addMemberPopupMenu($url, $str, $icon = '', $target = 'self')
1895
	{
1896
		$member_popup_menu_list = Context::get('member_popup_menu_list');
1897
		if(!is_array($member_popup_menu_list)) $member_popup_menu_list = array();
1898
1899
		$obj = new stdClass;
1900
		$obj->url = $url;
1901
		$obj->str = $str;
1902
		$obj->icon = $icon;
1903
		$obj->target = $target;
1904
		$member_popup_menu_list[] = $obj;
1905
1906
		Context::set('member_popup_menu_list', $member_popup_menu_list);
1907
	}
1908
1909
	/**
1910
	 * Add users to the member table