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

modules/comment/comment.model.php 1 location

@@ 710-719 (lines=10) @@
707
					$args->s_content = $search_keyword;
708
					break;
709
710
				case 'user_id' :
711
					if($search_keyword)
712
					{
713
						$search_keyword = str_replace(' ', '%', $search_keyword);
714
					}
715
716
					$args->s_user_id = $search_keyword;
717
					$query_id = 'comment.getTotalCommentListWithinMember';
718
					$args->sort_index = 'comments.list_order';
719
					break;
720
721
				case 'user_name' :
722
					if($search_keyword)

modules/document/document.model.php 2 locations

@@ 1150-1154 (lines=5) @@
1147
					$args->s_title = $search_keyword;
1148
					$args->s_content = $search_keyword;
1149
					break;
1150
				case 'user_id' :
1151
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1152
					$args->s_user_id = $search_keyword;
1153
					$args->sort_index = 'documents.'.$args->sort_index;
1154
					break;
1155
				case 'user_name' :
1156
				case 'nick_name' :
1157
				case 'email_address' :
@@ 1396-1400 (lines=5) @@
1393
					$args->s_content = $search_keyword;
1394
					$use_division = true;
1395
					break;
1396
				case 'user_id' :
1397
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1398
					$args->s_user_id = $search_keyword;
1399
					$args->sort_index = 'documents.'.$args->sort_index;
1400
					break;
1401
				case 'user_name' :
1402
				case 'nick_name' :
1403
				case 'email_address' :