Multi cache pool support

This commit is contained in:
bergware
2020-04-12 10:46:19 +02:00
parent 0c71ae949a
commit 34414ffa32
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ Markdown="false"
*/
?>
<style>
.loc{text-align:left;white-space:nowrap}
.loc{text-align:left}
#title span.left{text-transform:none}
</style>
<script>
@@ -39,6 +39,6 @@ $(function(){
</script>
<table class="indexer tablesorter shift">
<thead><tr><th>_(Type)_</th><th class='sorter-text'>_(Name)_</th><th>_(Size)_</th><th>_(Last Modified)_</th><th>_(Location)_</th></tr></thead>
<tbody><tr><td colspan="5"></td></tr></tbody>
<tbody><tr><td colspan="5">&nbsp;</td></tr></tbody>
</table>
<input type="button" value="_(Done)_" onclick="done('Browse')">
+1 -1
View File
@@ -101,7 +101,7 @@ function device_info(&$disk,$online) {
function device_browse(&$disk) {
global $path;
$dir = $disk['name']=='flash' ? "/boot" : "/mnt/{$disk['name']}";
return "<a href=\"".htmlspecialchars("$path/Browse?dir=$dir")."\"><img src='/webGui/images/explore.png' title='"._('Browse')." $dir'></a>";
return "<a href=\"/$path/Browse?dir=".htmlspecialchars($dir)."\"><img src='/webGui/images/explore.png' title='"._('Browse')." $dir'></a>";
}
function device_desc(&$disk) {
global $var;