forked from extern/egroupware
Fix display bug.
If this line replace all \n by <br />, Toolbox in calendar are too big (x2) (and other is blank; for the display is very very bad)
This commit is contained in:
parent
46a292c882
commit
9d9f46f532
@ -93,7 +93,7 @@ class html
|
||||
}
|
||||
if ($text === False) return ' onmouseover="'.$opt_out.'return escape(this.innerHTML);"';
|
||||
|
||||
return ' onmouseover="'.$opt_out.'return escape(\''.str_replace(array("\n","\r","'",'"'),array('<br />','',"\\'",'"'),$text).'\')"';
|
||||
return ' onmouseover="'.$opt_out.'return escape(\''.str_replace(array("\n","\r","'",'"'),array('\n','',"\\'",'"'),$text).'\')"';
|
||||
}
|
||||
|
||||
function activate_links($content)
|
||||
|
Loading…
Reference in New Issue
Block a user