Changeset 1602
- Timestamp:
- 06/09/08 07:58:09 (5 months ago)
- Files:
-
- devel/mod/search/lib/search_suggest_users.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/mod/search/lib/search_suggest_users.php
r1539 r1602 21 21 22 22 if ($results = get_records_sql($searchline)) { 23 if ( $PAGE->search_type_unformatted == "person") {23 if (!empty($PAGE->search_type_unformatted) && $PAGE->search_type_unformatted == "person") { 24 24 $run_result .= "<h2>" . __gettext("Matching users:") . "</h2><p>"; 25 } else if ( $PAGE->search_type_unformatted == "community") {25 } else if (!empty($PAGE->search_type_unformatted) && $PAGE->search_type_unformatted == "community") { 26 26 $run_result .= "<h2>" . __gettext("Matching communities:") . "</h2><p>"; 27 27 } else {
