aboutsummaryrefslogtreecommitdiffstats
path: root/mod/match.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-07-03 21:30:48 -0700
committerFriendika <info@friendika.com>2011-07-03 21:30:48 -0700
commite795d1265e9d49439e4af66184d50f6affe079c6 (patch)
tree72f8abad5d2df1138a973f1e34f3fe5997014b12 /mod/match.php
parentcd7098501e124eb6f56483503b78ad337b9d30ab (diff)
downloadvolse-hubzilla-e795d1265e9d49439e4af66184d50f6affe079c6.tar.gz
volse-hubzilla-e795d1265e9d49439e4af66184d50f6affe079c6.tar.bz2
volse-hubzilla-e795d1265e9d49439e4af66184d50f6affe079c6.zip
show keywords in match results
Diffstat (limited to 'mod/match.php')
-rw-r--r--mod/match.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/match.php b/mod/match.php
index 4316d8bd7..5dd80fe3e 100644
--- a/mod/match.php
+++ b/mod/match.php
@@ -43,7 +43,7 @@ function match_content(&$a) {
foreach($j->results as $jj) {
$o .= '<div class="profile-match-wrapper"><div class="profile-match-photo">';
- $o .= '<a href="' . $jj->url . '">' . '<img src="' . $jj->photo . '" alt="' . $jj->name . '" title="' . $jj->name . '[' . $jj->url . ']' . '" /></a></div>';
+ $o .= '<a href="' . $jj->url . '">' . '<img src="' . $jj->photo . '" alt="' . $jj->name . '" title="' . $jj->name . '[' . $jj->tags . ']' . '" /></a></div>';
$o .= '<div class="profile-match-break"></div>';
$o .= '<div class="profile-match-name"><a href="' . $jj->url . '" title="' . $jj->name . '[' . $jj->url .']' . '">' . $jj->name . '</a></div>';
$o .= '<div class="profile-match-end"></div></div>';