Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
AjaxQuote
This discussion has been closed.
Comments
if ( $Context->Session->UserID > 0 && $Context->Session->User->Permission('PERMISSION_HTML_ALLOWED') ) { //Make HTMLformater the only formatter available for new post $Context->Configuration['DEFAULT_FORMAT_TYPE'] = "Html"; $Context->Session->User->DefaultFormatType = "Html"; $Context->Session->User->Preferences['ShowFormatSelector'] = 0; }
example:
i have in my forum setup max. 10 comments per page, if somebody wants to quote comment number 10 then the next page doesnt show up any quote.
<fieldset style="border: 1px solid rgb(204, 204, 204); background: rgb(254, 249, 233) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"> <legend> Quote: <b>giginger</b> </legend> Wanderer: I don't know how you do it but everything you say is intensely annoying. Is your last sentence a statement or a question? </fieldset>
Giving:
Quote: gigingerWanderer: I don't know how you do it but everything you say is intensely annoying. Is your last sentence a statement or a question?
But you can get something reasonably similar and semantically correct by using:
<blockquote style="border:1px solid #ccc;background:#fef9e9;padding:0 0.8em 0.42em 0.8em;"><cite style="position:relative;top:-1em;">Quote: <b>giginger</b></cite> Wanderer: I don't know how you do it but everything you say is intensely annoying. Is your last sentence a statement or a question?</blockquote>
Which gives: Or just go for the simpler:
<blockquote style="border:1px solid #ccc;background:#fef9e9;padding:0.42em 0.8em;"><cite>Quote: <b>giginger</b></cite> Wanderer: I don't know how you do it but everything you say is intensely annoying. Is your last sentence a statement or a question?</blockquote>
Which gives: