diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | frontends/php/include/config.inc.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -13,6 +13,7 @@ Changes for 1.5: Changes for 1.4.2: + - fixed displaying of text data (EOL) in screens (Alexei) - added missing { and } when displaying trigger expressions (Alexei) - fixed processing of negative SNMP integers (Alexei) - fixed processing of MM in format of log timestamps (Alexei) 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: |