diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 19:16:38 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 19:16:38 -0400 |
commit | 354ee48eeee3f76b916000bf3f17207f32f42a3e (patch) | |
tree | 60d72426d6033f42eb4142826a20b529112a7ee9 /actions | |
parent | 161cbe6f5d448d4c061b3f007327c543038a7519 (diff) |
better highlighting in URL
darcs-hash:20080709231638-84dde-91dd99af8fbeae8b2400543913efedec3938b2aa.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/peoplesearch.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 86c64983c..1d2fc2c53 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -101,8 +101,8 @@ class PeoplesearchAction extends SearchAction { common_element_end('p'); if ($profile->homepage) { common_element_start('p', 'website'); - common_element('a', array('href' => $profile->homepage), - $this->highlight($profile->homepage, $terms)); + common_element_start('a', array('href' => $profile->homepage)); + common_raw($this->highlight($profile->homepage, $terms)); common_element_end('p'); } if ($profile->bio) { |