You're right.rxu wrote:There's nothing to do with post edit here, QR is just for postingThéonaute wrote:You can't use $user->data here because if an admin or mod edit this post, he will see his own groupsUnless I'm missing something in your MOD.
You're right.rxu wrote:There's nothing to do with post edit here, QR is just for postingThéonaute wrote:You can't use $user->data here because if an admin or mod edit this post, he will see his own groupsUnless I'm missing something in your MOD.
Please notice that 3.0.6 has it own built-in quick reply.Ephemeraboy wrote:if this MOD support for 3.0.6..
You can just find the following row in quick_reply.htmlfrenzoo wrote:FireBug complains that the function "checkForm" is not defined.
Code: Select all
<form id="postform" method="post" action="{S_POST_ACTION}" onsubmit="return checkForm(this);" name="postform"{S_FORM_ENCTYPE}>
Code: Select all
<form id="postform" method="post" action="{S_POST_ACTION}" name="postform"{S_FORM_ENCTYPE}>
That's a common phpBB3 templating basis. You can find an assignment of that placeholder in includes/quick_reply.phpfrenzoo wrote:Is {S_POST_ACTION} a variable?
If yes, where can I find the value of such variable?
Code: Select all
'S_POST_ACTION' => $s_action
Code: Select all
$s_action = append_sid("{$phpbb_root_path}posting.$phpEx", "mode=$mode&f=$forum_id", true, $user->session_id);
$s_action .= (isset($topic_id) && $topic_id) ? "&t=$topic_id" : '';