From: friendica Date: Fri, 22 Jun 2012 07:39:47 +0000 (-0700) Subject: only sparklify the links, not the photos as they aren't linked X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a60d66c70ae165282ec7851c1c89176e2c7dc99e;p=friendica-addons.git only sparklify the links, not the photos as they aren't linked --- diff --git a/page.tgz b/page.tgz index 6c30406a..f77dcf23 100644 Binary files a/page.tgz and b/page.tgz differ diff --git a/page/page.php b/page/page.php index 014cc499..fd48b4ee 100755 --- a/page/page.php +++ b/page/page.php @@ -65,7 +65,7 @@ function page_page_end($a,&$b) { $more = false; foreach($contacts as $contact) { - $page .= '
  • ' . $contact['url'] . ' '. + $page .= '
  • ' . $contact['url'] . ' '. $contact["name"]."
  • "; $total_shown ++; if($total_shown == 6) { @@ -99,7 +99,7 @@ function page_network_mod_init($a,$b) { $more = false; foreach($contacts as $contact) { - $page .= '
  • ' . $contact['url'] . ' '. + $page .= '
  • ' . $contact['url'] . ' '. $contact["name"]."
  • "; $total_shown ++; if(($show_total) && ($total_shown == $show_total)) {