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

@@ 1115-1119 (lines=5) @@
1112
					$args->s_title = $search_keyword;
1113
					$args->s_content = $search_keyword;
1114
					break;
1115
				case 'user_id' :
1116
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1117
					$args->s_user_id = $search_keyword;
1118
					$args->sort_index = 'documents.'.$args->sort_index;
1119
					break;
1120
				case 'user_name' :
1121
				case 'nick_name' :
1122
				case 'email_address' :
@@ 1361-1365 (lines=5) @@
1358
					$args->s_content = $search_keyword;
1359
					$use_division = true;
1360
					break;
1361
				case 'user_id' :
1362
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1363
					$args->s_user_id = $search_keyword;
1364
					$args->sort_index = 'documents.'.$args->sort_index;
1365
					break;
1366
				case 'user_name' :
1367
				case 'nick_name' :
1368
				case 'email_address' :