IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
594 | 594 | $searches[] = "$col LIKE '$leading_wild" . like_escape($string) . "$trailing_wild'"; |
595 | 595 | } |
596 | 596 | |
597 | | return ' AND (' . implode(' OR ', $searches) . ')'; |
| 597 | $search = ' AND (' . implode(' OR ', $searches) . ')'; |
| 598 | |
| 599 | return apply_filters_ref_array( 'user_search_sql', array( $search, $string, $cols, $searches, $wild ) ); |
598 | 600 | } |
599 | 601 | |
600 | 602 | /** |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
372 | 372 | foreach ( $cols as $col ) |
373 | 373 | $searches[] = "$col LIKE '%$string%'"; |
374 | 374 | |
375 | | return ' AND (' . implode(' OR ', $searches) . ')'; |
| 375 | $search = ' AND (' . implode(' OR ', $searches) . ')'; |
| 376 | |
| 377 | return apply_filters_ref_array( 'comment_search_sql', array( $search, $string, $cols, $searches ) ); |
376 | 378 | } |
377 | 379 | } |
378 | 380 | |