aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-22 02:21:53 -0700
committerFriendika <info@friendika.com>2011-03-22 02:21:53 -0700
commitcd2a0802e4840253540f256fc49459b8e7c1e911 (patch)
tree216f39440ec2bfe83b254ecf0a31c4afb4d4347f /mod
parent89977cd87ca90ff0619e730675d7eae70be1b7d4 (diff)
downloadvolse-hubzilla-cd2a0802e4840253540f256fc49459b8e7c1e911.tar.gz
volse-hubzilla-cd2a0802e4840253540f256fc49459b8e7c1e911.tar.bz2
volse-hubzilla-cd2a0802e4840253540f256fc49459b8e7c1e911.zip
horizontal match layout
Diffstat (limited to 'mod')
-rw-r--r--mod/match.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/match.php b/mod/match.php
index 7228529d7..092595a09 100644
--- a/mod/match.php
+++ b/mod/match.php
@@ -39,11 +39,12 @@ function match_content(&$a) {
if(count($j->results)) {
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 . '" /></a></div>';
+ $o .= '<a href="' . $jj->url . '">' . '<img src="' . $jj->photo . '" alt="' . $jj->name . '" title="' . $jj->name . '[' . $jj->url . ']' . '" /></a></div>';
$o .= '<div class="profile-match-break"></div>';
- $o .= '<div class="profile-match-name"><a href="' . $jj->url . '">' . $jj->name . '</a></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>';
}
+ $o .= '<div id="profile-match-wrapper-end"></div>';
}
else {
notice( t('No matches') . EOL);