Tested on phpBB version: See below
[The extension zip has been deactivated and can no longer be displayed.]
Code: Select all
Parse error: syntax error, unexpected T_DOUBLE_ARROW in C:\wamp\www\qim\boards\phpbb\posting.php on line 1227
Code: Select all
$s_action .= ($topic_id) ? "&t=$topic_id" : '';
$s_action .= ($post_id) ? "&p=$post_id" : '';
//-- Quote to new topic
//-- Add:
// If we are actual in aq_quote mode, overwrite the mode in $s_action
if ($aq_quote)
{
$s_action = str_replace('mode=quote', 'mode=aq_quote', $s_action);
}
//-- End Quote to new topic
'U_QUOTE' => ($auth->acl_get('f_reply', $forum_id)) ?
//-- Quote to new topic
//-- Add:
'U_QUOTE_NEW_TOPIC' => ($auth->acl_get('f_reply', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=aq_quote&f=$forum_id&p={$row['post_id']}") : '',
//-- End Quote to new topic
switch ($mode)
{
case 'post':
$page_title = $user->lang['POST_TOPIC'];
break;