diff options
author | Ermal <eri@pfsense.org> | 2012-11-12 09:53:29 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2012-11-12 09:53:29 +0000 |
commit | a3da8f50f740297cd573c968841ba1b2a57ea693 (patch) | |
tree | 675f5c289a5144c9b7209b7fa51527ed245ffbff /etc/inc/pfsense-utils.inc | |
parent | ca7a78d87dbf116c4721ca7e532d2647659f6864 (diff) | |
download | pfsense-a3da8f50f740297cd573c968841ba1b2a57ea693.zip pfsense-a3da8f50f740297cd573c968841ba1b2a57ea693.tar.gz |
Send just line return rather than newline
Diffstat (limited to 'etc/inc/pfsense-utils.inc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index fcfd279..d6e3d4d 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -1677,7 +1677,7 @@ function read_body($ch, $string) { if(($downloadProgress % 10) == 0 || $downloadProgress < 10) { $tostatus = $static_status . $downloadProgress . "%"; if ($downloadProgress == 100) { - $tostatus = $tostatus . "\n"; + $tostatus = $tostatus . "\r"; } update_status($tostatus); } @@ -1690,7 +1690,7 @@ function read_body($ch, $string) { if(($downloadProgress % 10) == 0 || $downloadProgress < 10) { $tooutput = $static_output . $downloadProgress . "%"; if ($downloadProgress == 100) { - $tooutput = $tooutput . "\n"; + $tooutput = $tooutput . "\r"; } update_output_window($tooutput); } |