]> git.mxchange.org Git - friendica-addons.git/commitdiff
Improved accessibility for "forumlist"
authorMichael Vogel <icarus@dabo.de>
Mon, 17 Aug 2015 06:02:26 +0000 (08:02 +0200)
committerMichael Vogel <icarus@dabo.de>
Mon, 17 Aug 2015 06:02:26 +0000 (08:02 +0200)
forumlist/forumlist.php

index 61a20c71bd475217d8b69a4ec10876693184551d..6dd283f7086bf664db00b432b194581b975d8658 100644 (file)
@@ -65,7 +65,7 @@ function forumlist_network_mod_init($a,$b) {
 
        $forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >' 
                                . t('show/hide') . '</div>'
-                               . '<div id="forum-list" style="display: none;">';
+                               . '<div role="menu" id="forum-list" style="display: none;">';
 
 
        $randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
@@ -74,13 +74,13 @@ function forumlist_network_mod_init($a,$b) {
 
        if(count($contacts)) {
                foreach($contacts as $contact) {
-                       $forumlist .= '<div><a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="' . $contact['url'] . '" class="label sparkle" target="_blank"><img class="forumlist-img" height="20" width="20" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /></a> <a href="' . $a->get_baseurl() . '/network?f=&cid=' . $contact['id'] . '" >' . $contact["name"]."</a></div>";
+                       $forumlist .= '<div role="menuitem"><a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="'.t('External link to forum').'" class="label sparkle" target="_blank"><img class="forumlist-img" height="20" width="20" src="' . $contact['micro'] .'" alt="'.t('External link to forum').'" /></a> <a href="' . $a->get_baseurl() . '/network?f=&cid=' . $contact['id'] . '" >' . $contact["name"]."</a></div>";
                }
        }
        else {
                $forumlist .= t('No forum subscriptions');
        }
-               
+
        $forumlist .= "</div></div>";
        if (sizeof($contacts) > 0)
                $a->page['aside'] = $forumlist . $a->page['aside'];