Improved accessibility for "forumlist"
parent
52e15fd889
commit
9f49993c9b
|
@ -65,7 +65,7 @@ function forumlist_network_mod_init($a,$b) {
|
||||||
|
|
||||||
$forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >'
|
$forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >'
|
||||||
. t('show/hide') . '</div>'
|
. 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'));
|
$randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
|
||||||
|
@ -74,13 +74,13 @@ function forumlist_network_mod_init($a,$b) {
|
||||||
|
|
||||||
if(count($contacts)) {
|
if(count($contacts)) {
|
||||||
foreach($contacts as $contact) {
|
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 {
|
else {
|
||||||
$forumlist .= t('No forum subscriptions');
|
$forumlist .= t('No forum subscriptions');
|
||||||
}
|
}
|
||||||
|
|
||||||
$forumlist .= "</div></div>";
|
$forumlist .= "</div></div>";
|
||||||
if (sizeof($contacts) > 0)
|
if (sizeof($contacts) > 0)
|
||||||
$a->page['aside'] = $forumlist . $a->page['aside'];
|
$a->page['aside'] = $forumlist . $a->page['aside'];
|
||||||
|
|
Loading…
Reference in New Issue