mirror of
https://github.com/unraid/webgui.git
synced 2026-03-07 10:30:37 -06:00
Remove unneeded title messages in links
This commit is contained in:
@@ -290,7 +290,7 @@ foreach ($pages as $page) {
|
||||
if (!file_exists($icon)) { $icon = "{$pg['root']}/{$pg['Icon']}"; if (!file_exists($icon)) $icon = false; }
|
||||
}
|
||||
if (!$icon) $icon = "/webGui/images/default.png";
|
||||
echo "<div class=\"Panel\"><a href=\"$link\" onclick=\"$.cookie('one','tab1',{path:'/'})\"><img class=\"PanelImg\" src=\"$icon\" title=\"$title\"><br><div class=\"PanelText\">$title</div></a></div>";
|
||||
echo "<div class=\"Panel\"><a href=\"$link\" onclick=\"$.cookie('one','tab1',{path:'/'})\"><img class=\"PanelImg\" src=\"$icon\"><br><div class=\"PanelText\">$title</div></a></div>";
|
||||
}
|
||||
}
|
||||
$text = $page['text'];
|
||||
|
||||
@@ -55,7 +55,7 @@ function device_info(&$disk) {
|
||||
case 'grey-off': $help = 'Device not present'; break;
|
||||
}
|
||||
$status = "$ctrl<a class='info nohand' onclick='return false'><img src='/webGui/images/{$disk['color']}.png' class='icon'><span>$help</span></a>";
|
||||
$link = strpos($disk['status'], 'DISK_NP')===false ? "<a href='$path/$type?name=$name' title='".$fancyname." Settings'>".$fancyname."</a>" : $fancyname;
|
||||
$link = strpos($disk['status'], 'DISK_NP')===false ? "<a href='$path/$type?name=$name'>".$fancyname."</a>" : $fancyname;
|
||||
return $status.$link;
|
||||
}
|
||||
function device_browse(&$disk) {
|
||||
|
||||
Reference in New Issue
Block a user