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]&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>
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]&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>