change formatting of search output
darcs-hash:20080709220045-84dde-b81ebf4e5f9c8c0eef17e785de28d93e2987979f.gz
This commit is contained in:
parent
9b50dcc384
commit
0506a7265d
@ -111,21 +111,31 @@ class PeoplesearchAction extends Action {
|
|||||||
($profile->fullname) ? $profile->fullname :
|
($profile->fullname) ? $profile->fullname :
|
||||||
$profile->nickname));
|
$profile->nickname));
|
||||||
common_element_end('a');
|
common_element_end('a');
|
||||||
|
common_element_start('p');
|
||||||
common_element_start('a', array('href' => $profile->profileurl,
|
common_element_start('a', array('href' => $profile->profileurl,
|
||||||
'class' => 'nickname'));
|
'class' => 'nickname'));
|
||||||
common_raw($this->highlight($profile->nickname, $terms));
|
common_raw($this->highlight($profile->nickname, $terms));
|
||||||
common_element_end('a');
|
common_element_end('a');
|
||||||
if ($profile->fullname) {
|
if ($profile->fullname) {
|
||||||
common_element_start('p', 'fullname');
|
common_text(' | ');
|
||||||
|
common_element_start('span', 'fullname');
|
||||||
common_raw($this->highlight($profile->fullname, $terms));
|
common_raw($this->highlight($profile->fullname, $terms));
|
||||||
common_element_end('p');
|
common_element_end('span');
|
||||||
}
|
}
|
||||||
if ($profile->location) {
|
if ($profile->location) {
|
||||||
common_element_start('p', 'location');
|
common_text(' | ');
|
||||||
|
common_element_start('span', 'location');
|
||||||
common_raw($this->highlight($profile->location, $terms));
|
common_raw($this->highlight($profile->location, $terms));
|
||||||
|
common_element_end('span');
|
||||||
|
}
|
||||||
|
common_element_end('p');
|
||||||
|
if ($profile->homepage) {
|
||||||
|
common_element_start('p', 'website');
|
||||||
|
common_element('a', array('href' => $profile->homepage),
|
||||||
|
$profile->homepage);
|
||||||
common_element_end('p');
|
common_element_end('p');
|
||||||
}
|
}
|
||||||
if ($profile->location) {
|
if ($profile->bio) {
|
||||||
common_element_start('p', 'bio');
|
common_element_start('p', 'bio');
|
||||||
common_raw($this->highlight($profile->bio, $terms));
|
common_raw($this->highlight($profile->bio, $terms));
|
||||||
common_element_end('p');
|
common_element_end('p');
|
||||||
|
Loading…
Reference in New Issue
Block a user