only sparklify the links, not the photos as they aren't linked

This commit is contained in:
friendica 2012-06-22 00:39:47 -07:00
parent 18c59bd2e7
commit a60d66c70a
2 changed files with 2 additions and 2 deletions

BIN
page.tgz

Binary file not shown.

View File

@ -65,7 +65,7 @@ function page_page_end($a,&$b) {
$more = false;
foreach($contacts as $contact) {
$page .= '<li style="list-style-type: none;" class="tool sparkle"><img height="20" width="20" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" title="' . $contact['url'] . '" class="label sparkle" target="external-link">'.
$page .= '<li style="list-style-type: none;" class="tool"><img height="20" width="20" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" title="' . $contact['url'] . '" class="label sparkle" target="external-link">'.
$contact["name"]."</a></li>";
$total_shown ++;
if($total_shown == 6) {
@ -99,7 +99,7 @@ function page_network_mod_init($a,$b) {
$more = false;
foreach($contacts as $contact) {
$page .= '<li style="list-style-type: none;" class="tool sparkle"><img height="20" width="20" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" title="' . $contact['url'] . '" class="label sparkle" target="external-link">'.
$page .= '<li style="list-style-type: none;" class="tool"><img height="20" width="20" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" title="' . $contact['url'] . '" class="label sparkle" target="external-link">'.
$contact["name"]."</a></li>";
$total_shown ++;
if(($show_total) && ($total_shown == $show_total)) {