summaryrefslogtreecommitdiffstats
path: root/usr/local/www/upload_progress.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2008-11-24 03:21:40 +0000
committerScott Ullrich <sullrich@pfsense.org>2008-11-24 03:21:40 +0000
commitf5811c1ba4b5c27956e8db7f631bd393c639e141 (patch)
tree046c961b890641196af2dbd747f555793fc459f0 /usr/local/www/upload_progress.php
parentee0b88a6e241e400e95e56ad44c791517a389aaa (diff)
downloadpfsense-f5811c1ba4b5c27956e8db7f631bd393c639e141.zip
pfsense-f5811c1ba4b5c27956e8db7f631bd393c639e141.tar.gz
Fix missing tr, td tags
Diffstat (limited to 'usr/local/www/upload_progress.php')
-rw-r--r--usr/local/www/upload_progress.php19
1 files changed, 12 insertions, 7 deletions
diff --git a/usr/local/www/upload_progress.php b/usr/local/www/upload_progress.php
index b79d31d..171e185 100644
--- a/usr/local/www/upload_progress.php
+++ b/usr/local/www/upload_progress.php
@@ -74,22 +74,27 @@ if (intval($info['percent']) > "99") {
<table height="100%" width="100%" cellPadding="4" cellSpacing="4" style="border:1px solid #990000;">
<tr>
<td>
- <font face="arial"><b><center>Uploading files...</b></center>
+ <font face="arial"><b><center>Uploading file...</b></center>
<br>
<table width="100%" height="15" colspacing="0" cellpadding="0" cellspacing="0" border="0" align="top" nowrap>
<tr>
- <td width="5" height="15" background="./themes/<?= $g['theme']; ?>/images/misc/bar_left.gif" align="top"></td>
+ <td width="5" height="15" background="./themes/<?= $g['theme']; ?>/images/misc/bar_left.gif" align="top">
+ </td>
<td>
<table WIDTH="100%" height="15" colspacing="0" cellpadding="0" cellspacing="0" border="0" align="top" nowrap>
- <td background="./themes/<?= $g['theme']; ?>/images/misc/bar_gray.gif">
- <?php
+ <tr>
+ <td background="./themes/<?= $g['theme']; ?>/images/misc/bar_gray.gif">
+ <?php
$meter = sprintf("%.2f", $info['bytes_uploaded'] / $info['bytes_total'] * 100);
echo "<img src='./themes/{$g['theme']}/images/misc/bar_blue.gif' height='15' WIDTH='{$meter}%'>";
- ?>
- </td>
+ ?>
+ </td>
+ </tr>
</table>
</td>
- <td width="5" height="15" background="./themes/<?= $g['theme']; ?>/images/misc/bar_right.gif" align="top"></td>
+ <td width="5" height="15" background="./themes/<?= $g['theme']; ?>/images/misc/bar_right.gif" align="top">
+ </td>
+ </tr>
</table>
<br>
<table width="100%">
OpenPOWER on IntegriCloud