modules/member/member.admin.model.php 1 location
|
@@ 65-68 (lines=4) @@
|
62 |
|
{ |
63 |
|
switch($search_target) |
64 |
|
{ |
65 |
|
case 'user_id' : |
66 |
|
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
67 |
|
$args->s_user_id = $search_keyword; |
68 |
|
break; |
69 |
|
case 'user_name' : |
70 |
|
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
71 |
|
$args->s_user_name = $search_keyword; |
modules/point/point.model.php 1 location
|
@@ 169-172 (lines=4) @@
|
166 |
|
{ |
167 |
|
switch($search_target) |
168 |
|
{ |
169 |
|
case 'user_id' : |
170 |
|
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
171 |
|
$args->s_user_id = $search_keyword; |
172 |
|
break; |
173 |
|
case 'user_name' : |
174 |
|
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
175 |
|
$args->s_user_name = $search_keyword; |
modules/comment/comment.model.php 1 location
|
@@ 861-869 (lines=9) @@
|
858 |
|
$args->s_content = $search_keyword; |
859 |
|
break; |
860 |
|
|
861 |
|
case 'user_id' : |
862 |
|
if($search_keyword) |
863 |
|
{ |
864 |
|
$search_keyword = str_replace(' ', '%', $search_keyword); |
865 |
|
} |
866 |
|
|
867 |
|
$args->s_user_id = $search_keyword; |
868 |
|
$query_id = 'comment.getTotalCommentCountWithinMemberByGroupStatus'; |
869 |
|
break; |
870 |
|
|
871 |
|
case 'user_name' : |
872 |
|
if($search_keyword) |