diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index bd813b784c..5d45bbea81 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -841,8 +841,13 @@ function get_filename_from_url($url) {
* update_output_window: update bottom textarea dynamically.
*/
function update_output_window($text) {
+ global $pkg_interface;
$log = ereg_replace("\n", "\\n", $text);
- echo "\n";
+ if($pkg_interface == "console") {
+ echo " $log";
+ } else {
+ echo "\n";
+ }
/* ensure that contents are written out */
ob_flush();
}