reverted "no need for RegExp replace", as javascript only replace first occurence, if a string given

This commit is contained in:
Ralf Becker 2013-07-23 14:41:53 +00:00
parent 78f032e063
commit 6e6b2b7b0a

View File

@ -178,7 +178,7 @@ function refresh_'.$id.'()
ajax.sendRequest(true,function(_data) {
if (_data.length) {
'.$id.'_tail_start = _data.next;
var log = $j("#'.$id.'").append(_data.content.replace("<","&lt;"));
var log = $j("#'.$id.'").append(_data.content.replace(/</g,"&lt;"));
log.animate({ scrollTop: log.prop("scrollHeight") - log.height() + 20 }, 500);
}
if (_data.size === false)