]> git.mxchange.org Git - friendica-addons.git/commitdiff
only sparklify the links, not the photos as they aren't linked
authorfriendica <info@friendica.com>
Fri, 22 Jun 2012 07:39:47 +0000 (00:39 -0700)
committerfriendica <info@friendica.com>
Fri, 22 Jun 2012 07:39:47 +0000 (00:39 -0700)
page.tgz
page/page.php

index 6c30406afc7df06c7d0148250abf41845821878e..f77dcf2364dc8f88319d1df71ee4ad38386f5a2e 100644 (file)
Binary files a/page.tgz and b/page.tgz differ
index 014cc4995c43b8f7cb2b847f5be644d484bf1e96..fd48b4ee69212e37687810bbd1f60f7fcee17894 100755 (executable)
@@ -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)) {