Jump to content

Quotestripping in IPB 2.3.6 leaves extra linebreaks


Jyosua

Recommended Posts

I noticed when I upgraded to IPB 2.3.6, extra linebreaks were left behind when quotes were stripped, after you quote a post containing quotes. I opened a ticket about this, and they pointed me to the sources/classes/post/class_post.php file, which had the linebreak stripping line commented out. I uncommented it, however, that removed ALL linebreaks, which wasn't desired either. Instead, I resolved my issue by leaving that line commented out, and instead inserting the following before the quotestripping line:



It effectively removed any extra linebreaks left behind from the quotestripping. You could integrate this into the quotestripping function, but I decided not to because I may want to change the way this is handled on my forum later. Anyways, I just wanted to let you guys be aware of this issue. :)

I didn't post this in the bug section because it's not a bug per se, but I'm suggesting it be added.

$tmp_post = preg_replace( "#(?:n|r|rn)([QUOTE([^]]+?)?])#is", "$1", trim($tmp_post) );
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...