diff options
author | René Corinth <corinth@cosmocode.de> | 2013-01-30 14:36:09 +0100 |
---|---|---|
committer | René Corinth <corinth@cosmocode.de> | 2013-01-30 14:36:09 +0100 |
commit | fc7684bc7f41c3351955f71b8a94a73bb11aa358 (patch) | |
tree | 90786e94aaecc6086f8d2f8e5da6b94710385c76 /inc/html.php | |
parent | d08527ab16aedc53a592c024ec7da7b7150ad78e (diff) | |
download | rpg-fc7684bc7f41c3351955f71b8a94a73bb11aa358.tar.gz rpg-fc7684bc7f41c3351955f71b8a94a73bb11aa358.tar.bz2 |
Added the title attribute for namespace-links
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index 5c1c75cf6..3124f4b1d 100644 --- a/inc/html.php +++ b/inc/html.php @@ -859,7 +859,7 @@ function html_list_index($item){ $base = ':'.$item['id']; $base = substr($base,strrpos($base,':')+1); if($item['type']=='d'){ - $ret .= '<a href="'.wl($ID,'idx='.rawurlencode($item['id'])).'" class="idx_dir"><strong>'; + $ret .= '<a href="'.wl($ID,'idx='.rawurlencode($item['id'])).'" title="' . $item['id'] . '" class="idx_dir"><strong>'; $ret .= $base; $ret .= '</strong></a>'; }else{ |