MyBB Community Forums

Full Version: line breaking in merge post routine
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys

I'm trying to make my own post merging border, as the
bar seems a bit confusing - gives the impression of the bouundery between post and sig..

I tried to use [br] and \n in the settings but didnt seem to work hehe

any way to do this?

what i wanted to do was:
Quote:user post here

--- (post merged) ----

user's 2nd successive post here
notice the line breaking
Alternative?

[hr]--- (post merged) ----[hr]
well that's one way to do it. but it's still gona show them horizontal lines i wana avoid Sad
[br] won't work unless you make a MyCode to make [br] equal <br />. Do that, and you can do

[br]--- (post merged) ----[br]

From memory, make the regular expresion \[br\] and the replacement <br /> and you'll be good to go.
awesome..

created a simple regex
\[mergepost\]
to put out html:
<br>
---------- (post merged) ----------
<br>

thanks!!