Changes between Initial Version and Version 1 of Ticket #9716, comment 12
- Timestamp:
- 04/19/2012 01:02:27 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9716, comment 12
initial v1 2 2 3 3 Find: 4 5 {{{ 4 6 $newcontent = stripslashes($_POST['newcontent']); 7 }}} 8 5 9 And replace it with this: 10 11 {{{ 6 12 $newcontent = ereg_replace("\r\n?", "\n", stripslashes($_POST['newcontent'])); 13 }}} 14 7 15 And all is well. 8 16 I hope this gets included in the next update.