mirror of
https://github.com/unraid/webgui.git
synced 2026-01-21 00:50:10 -06:00
Fix minor regression error in new browser function
This commit is contained in:
@@ -80,7 +80,7 @@ foreach ($list as $entry) {
|
||||
$total+=$entry['size'];
|
||||
$type = strpos(',',$entry['disk'])===false ? '' : 'warning';
|
||||
echo "<td sort='F' data='{$entry['fext']}'><div class='icon-file icon-".strtolower($entry['fext'])."'></div></td>";
|
||||
echo "<td sort='F' class='$type'><a href=\"".htmlspecialchars(urlencode_path($dir.'/'.$entry['name']))."\">".htmlspecialchars($entry['name'])."</a></td>";
|
||||
echo "<td sort='F'><a href=\"".htmlspecialchars(urlencode_path($dir.'/'.$entry['name']))."\" class=\"".($type?:'none')."\">".htmlspecialchars($entry['name'])."</a></td>";
|
||||
echo "<td sort='F' data='{$entry['size']}' class='$type'>".my_scale($entry['size'],$unit)." $unit</td>";
|
||||
echo "<td sort='F' data='{$entry['time']}' class='$type'>".my_time($entry['time'],"%F {$display['time']}")."</td>";
|
||||
echo "<td sort='F' class='$type'>{$entry['disk']}</td>";
|
||||
|
||||
Reference in New Issue
Block a user