diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-02-23 01:40:32 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-02-23 01:40:32 +0000 |
commit | 8a548d5a672088f874eb0efc757d629ed92d52eb (patch) | |
tree | 4b2ad917c994e747c2825bb02fd8b8439d4b6bc2 /etc | |
parent | 5059da03068187de8272b6fa30433eeebbf64c5a (diff) | |
download | pfsense-8a548d5a672088f874eb0efc757d629ed92d52eb.zip pfsense-8a548d5a672088f874eb0efc757d629ed92d52eb.tar.gz |
Show update percentages as XX%
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index aead5d5..4b63608 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -992,7 +992,7 @@ function update_progress_bar($percent) { echo "\ndocument.progressbar.style.width='" . $percent . "%';"; echo "\n</script>"; } else { - echo " $percent"; + echo " {$percent}%"; } } |