modules/comment/comment.model.php 1 location
|
@@ 847-855 (lines=9) @@
|
| 844 |
|
$args->s_content = $search_keyword; |
| 845 |
|
break; |
| 846 |
|
|
| 847 |
|
case 'user_id' : |
| 848 |
|
if($search_keyword) |
| 849 |
|
{ |
| 850 |
|
$search_keyword = str_replace(' ', '%', $search_keyword); |
| 851 |
|
} |
| 852 |
|
|
| 853 |
|
$args->s_user_id = $search_keyword; |
| 854 |
|
$query_id = 'comment.getTotalCommentCountWithinMemberByGroupStatus'; |
| 855 |
|
break; |
| 856 |
|
|
| 857 |
|
case 'user_name' : |
| 858 |
|
if($search_keyword) |
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
|
@@ 146-149 (lines=4) @@
|
| 143 |
|
{ |
| 144 |
|
switch($search_target) |
| 145 |
|
{ |
| 146 |
|
case 'user_id' : |
| 147 |
|
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
| 148 |
|
$args->s_user_id = $search_keyword; |
| 149 |
|
break; |
| 150 |
|
case 'user_name' : |
| 151 |
|
if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
| 152 |
|
$args->s_user_name = $search_keyword; |