jordanwb Posted January 1, 2008 Share Posted January 1, 2008 On my SCM that I'm working on I have a News plugin that handles Adding, Editing, Deleting and viewing news items. When a person adds a news Item it turns the following input: The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. into: <span>The quick brown fox jumps over the lazy dog.<br /> <br /> The quick brown fox jumps over the lazy dog.</span> The problem is that when the person edits this News Item, the nl2br function adds an extra set of break tags: <span>The quick brown fox jumps over the lazy dog.<br /><br /> <br /><br /> The quick brown fox jumps over the lazy dog.</span> Now that would create a noticible problem. What I want to do is somehow remove the extra break tags but leave one for each newline. Now you may suggest "Why not remove the nl2br call in the Edit?" Well what if the person adds more lines? Quote Link to comment https://forums.phpfreaks.com/topic/84013-solved-how-to-remove-repeating-tags/ Share on other sites More sharing options...
trq Posted January 1, 2008 Share Posted January 1, 2008 You need to store your data in its raw format and only use nl2br for displaying. Quote Link to comment https://forums.phpfreaks.com/topic/84013-solved-how-to-remove-repeating-tags/#findComment-427526 Share on other sites More sharing options...
jordanwb Posted January 1, 2008 Author Share Posted January 1, 2008 That's a good idea. Stupid me. :'( Quote Link to comment https://forums.phpfreaks.com/topic/84013-solved-how-to-remove-repeating-tags/#findComment-427532 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.