diff options
author | Mike Cochrane <mikec@mikenz.geek.nz> | 2008-07-10 01:12:01 -0400 |
---|---|---|
committer | Mike Cochrane <mikec@mikenz.geek.nz> | 2008-07-10 01:12:01 -0400 |
commit | 8b32942658b179010315450a62b473631a501399 (patch) | |
tree | e17e657afc570db675b3881744e4b5115961024e /actions/peoplesearch.php | |
parent | ce2b174c4a083128cd14154d0f6c61e19d5cb229 (diff) |
Trailing whitespace on lines
darcs-hash:20080710051201-533db-2d5fb38710ce1dedcb6e161b08e31611dbaba666.gz
Diffstat (limited to 'actions/peoplesearch.php')
-rw-r--r-- | actions/peoplesearch.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 308832429..323065d7a 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -23,7 +23,7 @@ require_once(INSTALLDIR.'/lib/searchaction.php'); define(PROFILES_PER_PAGE, 10); class PeoplesearchAction extends SearchAction { - + function get_instructions() { return _('Search for people on %%site.name%% by their name, location, or interests. ' . 'Separate the terms by spaces; they must be 3 characters or more.'); @@ -32,18 +32,18 @@ class PeoplesearchAction extends SearchAction { function get_title() { return _('People search'); } - + function show_results($q, $page) { - + $profile = new Profile(); # lcase it for comparison $q = strtolower($q); - $profile->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' . + $profile->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' . 'against (\''.addslashes($q).'\')'); # Ask for an extra to see if there's more. - + $profile->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1); $cnt = $profile->find(); @@ -63,11 +63,11 @@ class PeoplesearchAction extends SearchAction { } else { common_element('p', 'error', _('No results')); } - + common_pagination($page > 1, $cnt > PROFILES_PER_PAGE, $page, 'peoplesearch', array('q' => $q)); } - + function show_profile($profile, $terms) { common_element_start('li', array('class' => 'profile_single', 'id' => 'profile-' . $profile->id)); |