]> git.mxchange.org Git - friendica-addons.git/commitdiff
tweaks to page plugin
authorfriendica <info@friendica.com>
Sat, 24 Mar 2012 10:29:17 +0000 (03:29 -0700)
committerfriendica <info@friendica.com>
Sat, 24 Mar 2012 10:29:17 +0000 (03:29 -0700)
page.tgz
page/page.php

index ade28eb25411239128afec3a169c4391fd2b0b70..aebbe4dd8c4a14d43181d8e2bc8b6f3151b67c17 100644 (file)
Binary files a/page.tgz and b/page.tgz differ
index 584ac55647f4d70f6dcb424899b85220d098596d..2a65cab88cbdcb4b831c0e4f750b1cfc441113b0 100755 (executable)
@@ -1,7 +1,7 @@
 <?php
 /**
  * Name: Page
- * Description: Shows lists of community pages (improved performance over 'pages)
+ * Description: Shows lists of community pages (improved performance over 'pages')
  * Version: 1.0
  * Author: Mike Macgirvin <mike@macgirvin.com>
  * based on pages plugin by
@@ -50,7 +50,7 @@ function page_page_end($a,&$b) {
        $contacts = page_getpage($a->user['uid']);
 
        foreach($contacts as $contact) {
-               $page .= '<li style="list-style-type: none;" class="tool"><img height="16" width="16" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" class="label" 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" target="external-link">'.
                                $contact["name"]."</a></li>";
        }
        $page .= "</ul></div></div>";