diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-08-31 00:52:26 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-08-31 00:52:26 +0000 |
commit | 40631e863b56afe262cc6f11ed5fb7069b0fdd14 (patch) | |
tree | 85a833e0012d178a8e3d6b91d68579874c38d2f7 | |
parent | fdb38c10f3923ae4e777b2cc2d1371f454c07ff1 (diff) | |
download | pfsense-40631e863b56afe262cc6f11ed5fb7069b0fdd14.zip pfsense-40631e863b56afe262cc6f11ed5fb7069b0fdd14.tar.gz |
* Move directory up to line next to home icon
* Do not so many times, it looks awkward
-rw-r--r-- | usr/local/www/filebrowser/browser.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/filebrowser/browser.php b/usr/local/www/filebrowser/browser.php index fd56852..ee6e490 100644 --- a/usr/local/www/filebrowser/browser.php +++ b/usr/local/www/filebrowser/browser.php @@ -36,7 +36,7 @@ if(is_file($path)) <td class="fbHome" width="25px" align="left"> <img src="/filebrowser/images/icon_home.gif" alt="Home" title="Home" /> </td> - <td></td> + <td> <?=$path;?></td> <td class="fbClose" align="right"> <img onClick="new Effect.Fade($('fbBrowser'));" border="0" src="/filebrowser/images/icon_cancel.gif" alt="Close" title="Close" /> </td> @@ -49,7 +49,7 @@ if(is_file($path)) if(is_dir($path)) { list($dirs, $files) = get_content($path); ?> - <?=$path;?> + </td> </tr> <?php @@ -73,7 +73,7 @@ foreach($dirs as $dir): <td class="fbDir vexpl" id="<?=$realDir;?>" align="left"> <div onClick="$('fbTarget').value='<?=$realDir?>'; fbBrowse('<?=$realDir?>');"> <img src="/filebrowser/images/folder_generic.gif" /> - <?=$dir;?> + <?=$dir;?> </div> </td> <td></td> @@ -120,7 +120,7 @@ foreach($files as $file): <td class="fbFile vexpl" id="<?=$fqpn;?>" align="left"> <div onClick="$('fbTarget').value='<?=$path?>/<?=$file?>'; loadFile(); new Effect.Fade($('fbBrowser'));"> <img src="/filebrowser/images/file_<?=$type;?>.gif" alt="" title=""> - <?=$file;?> + <?=$file;?> </div> </td> <td align="right" class="vexpl"> |