]> git.mxchange.org Git - friendica-addons.git/blobdiff - page/page.php
Links now are directed to target="_blank"
[friendica-addons.git] / page / page.php
index 86607e81edebc05f84f55bbd9c2d28e036450673..e1ca90703fd3374f6eee689c696c10bb2814a2ad 100755 (executable)
@@ -69,7 +69,7 @@ function page_page_end($a,&$b) {
        $more = false;
 
        foreach($contacts as $contact) {
-               $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">'.
+               $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="_blank">'.
                                $contact["name"]."</a></li>";
                $total_shown ++;
                if($total_shown == 6) {
@@ -103,7 +103,7 @@ function page_network_mod_init($a,$b) {
        $more = false;
 
        foreach($contacts as $contact) {
-               $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">'.
+               $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="_blank">'.
                                $contact["name"]."</a></li>";
                $total_shown ++;
                if(($show_total) && ($total_shown == $show_total)) {