summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-02-03 10:20:35 -0800
committerAndreas Gohr <andi@splitbrain.org>2013-02-03 10:20:35 -0800
commit2c17055304d437fa33b0ce419fbc31d9066012b6 (patch)
treede8899fbfa890e89a81f3160a6020dcee540e4cb /inc
parentfca4df27d2d1c92086bd70be4407a732ef4aadc2 (diff)
parentfc7684bc7f41c3351955f71b8a94a73bb11aa358 (diff)
downloadrpg-2c17055304d437fa33b0ce419fbc31d9066012b6.tar.gz
rpg-2c17055304d437fa33b0ce419fbc31d9066012b6.tar.bz2
Merge pull request #171 from thesunrise1983/master
Added the title attribute for namespace-links
Diffstat (limited to 'inc')
-rw-r--r--inc/html.php2
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{