Changeset 1604 for branches/multiuser/search.php
- Timestamp:
- 10/16/06 06:31:35 (2 years ago)
- Files:
-
- 1 modified
-
branches/multiuser/search.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/search.php
r1530 r1604 41 41 $humanReadableQuery = $items->humanReadableQuery; 42 42 $title = sprintf((($cnt > 1 || $cnt == 0) ? 43 LBL_H2_SEARCH_RESULTS_FOR : LBL_H2_SEARCH_RESULT_FOR), $cnt, "'".$humanReadableQuery."'");43 __('%d matches for %s') : __('%d match for %s')), $cnt, "'".$humanReadableQuery."'"); 44 44 45 45 $items->setTitle($title); … … 49 49 . " not(unread & " . RSS_MODE_DELETED_STATE .") " 50 50 )); 51 $items->setTitle(sprintf( LBL_H2_SEARCH, $cnt));52 $GLOBALS['rss'] -> header = new Header( LBL_TITLE_SEARCH,LOCATION_SEARCH,null,"document.getElementById('".QUERY_PRM."').focus()");51 $items->setTitle(sprintf(__('Search %d items'), $cnt)); 52 $GLOBALS['rss'] -> header = new Header(__('Search'),LOCATION_SEARCH,null,"document.getElementById('".QUERY_PRM."').focus()"); 53 53 } 54 54 $GLOBALS['rss'] -> appendContentObject($items);
