X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpeoplesearch.php;h=adacc095440c8f0e2d23c255350ecf14de21604b;hb=0bba990e2f4506da877224285442c81f68662743;hp=1d2fc2c534b334108a13b3a1c1345d7b4b7d74e6;hpb=354ee48eeee3f76b916000bf3f17207f32f42a3e;p=quix0rs-gnu-social.git diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 1d2fc2c534..adacc09544 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -20,30 +20,30 @@ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/searchaction.php'); -define(PROFILES_PER_PAGE, 10); +define('PROFILES_PER_PAGE', 10); class PeoplesearchAction extends SearchAction { - + function get_instructions() { - return _t('Search for people on %%site.name%% by their name, location, or interests. ' . + 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.'); } function get_title() { - return _t('People search'); + 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(); @@ -61,13 +61,13 @@ class PeoplesearchAction extends SearchAction { } common_element_end('ul'); } else { - common_element('p', 'error', _t('No results')); + 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)); @@ -103,6 +103,7 @@ class PeoplesearchAction extends SearchAction { common_element_start('p', 'website'); common_element_start('a', array('href' => $profile->homepage)); common_raw($this->highlight($profile->homepage, $terms)); + common_element_end('a'); common_element_end('p'); } if ($profile->bio) { @@ -114,7 +115,8 @@ class PeoplesearchAction extends SearchAction { } function highlight($text, $terms) { - $pattern = '/('.implode('|',array_map('htmlspecialchars', $terms)).')/i'; + $terms = array_map('preg_quote', array_map('htmlspecialchars', $terms)); + $pattern = '/('.implode('|',$terms).')/i'; $result = preg_replace($pattern, '\\1', htmlspecialchars($text)); return $result; }