PDA

View Full Version : noquote=1


MickDoneDee
07-30-2004, 08:44 AM
noquote=1 This command works for newreply.php.

Is there a way to make it work for private.php?

I've added a reply button to the postbit in SHOWTHREAD which loads the message editor without quoted text.

The reply button also appears in the postbit of USERCP_SHELL when viewing private messages. The reply button, however, still loads the quoted text despite the command: noquote=1

The code I'm using in the postbit template is:

<div align="$stylevar[right]">
<!-- controls -->
<if condition="$post['editlink']">
<a href="$post[editlink]"><img border='0' src='$stylevar[imgdir_button]/edit.gif' alt='$vbphrase[edit_delete_message]' /></a></if>
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img border='0' src='$stylevar[imgdir_button]/forward.gif' alt='$vbphrase[forward_message]' /></a></if>
<if condition="$post['replylink']">
<a href="$post[replylink]&amp;noquote=1"><img border='0' src='$stylevar[imgdir_button]/reply_small.gif' alt='$vbphrase[reply]' /></a></if>
<if condition="$post['replylink']">
<a href="$post[replylink]"><img border='0' src='$stylevar[imgdir_button]/quote.gif' alt='$vbphrase[reply_with_quote]' /></a></if>
<if condition="$SHOWQUICKREPLY AND !$show['threadedmode']">
<a href="$post[replylink]" onclick="return qr($post[postid]);"><img border='0' src='$stylevar[imgdir_button]/quickreply.gif' alt='$vbphrase[quick_reply_to_this_message]' /></a>
<!-- / controls --></if>
</div>

Vega
07-30-2004, 09:06 AM
Take a look at that post:

https://vborg.vbsupport.ru/showpost.php?p=535890&postcount=3

If this wont work for you, take a look at that one:

https://vborg.vbsupport.ru/showpost.php?p=535894&postcount=5

MickDoneDee
07-31-2004, 11:22 AM
Thanks Vega, I tried those two suggestions but neither worked. I think they were intended to do something else.

<if condition="$post['replylink']">
<if condition="THIS_SCRIPT == 'private'">
<a href="$post[replylink]&stripquote=1"><img src="$stylevar[imgdir_button]/reply_small.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
<else />
<a href="$post[replylink]"><img src="$stylevar[imgdir_button]/reply_small.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if></if>

I tried the code above but it uses stripquote=1. It didn't remove the quoted text when replying so not sure what it does.

Does anybody know the difference between "noquote=1" and "stripquote=1"?