diff --git a/src/app/code/community/AvS/ScopeHint/Block/Hint.php b/src/app/code/community/AvS/ScopeHint/Block/Hint.php index 732895f..eb6a280 100644 --- a/src/app/code/community/AvS/ScopeHint/Block/Hint.php +++ b/src/app/code/community/AvS/ScopeHint/Block/Hint.php @@ -207,7 +207,10 @@ protected function _getHintHtml($changedScopes) foreach($changedScopes as $scope => $scopeValue) { - $text .= $scope . ': ' . $scopeValue . '
'; + $text .= $this->escapeHtml($scope). ':' + . '
' + . nl2br(wordwrap($this->escapeHtml($scopeValue))) + . '
'; } $iconurl = Mage::getBaseUrl('skin') . 'adminhtml/default/default/images/error_msg_icon.gif';