summaryrefslogtreecommitdiffstats
path: root/frontends/php/include
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-08-15 11:26:08 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-08-15 11:26:08 +0000
commite4618033ced417680e5dba7d247acaf800ac0698 (patch)
treed07c61171393f945bcf3e63d3518a8fa7d89344e /frontends/php/include
parentf84e8a5e4f853fe12b8bd42c7fb99f56eb3f7dad (diff)
- fixed displaying of text data (EOL) in screens (Alexei)
[svn merge -r4577:4580 svn://svn.zabbix.com/branches/1.4.2] git-svn-id: svn://svn.zabbix.com/trunk@4581 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include')
-rw-r--r--frontends/php/include/config.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php
index 46472344..d0337da0 100644
--- a/frontends/php/include/config.inc.php
+++ b/frontends/php/include/config.inc.php
@@ -960,7 +960,7 @@ function TODO($msg) { echo "TODO: ".$msg.BR; } // DEBUG INFO!!!
}
/* do not use break */
case ITEM_VALUE_TYPE_STR:
- $value = nbsp(htmlspecialchars($row["value"]));
+ $value = nl2br(nbsp(htmlspecialchars($row["value"])));
break;
default: