vinny/share-on

Add forum_id to shared URLs

vinny opened this issue · 1 comments

https://www.phpbb.com/customise/db/mod/share_on/support/mod_not_showing_the_right_url-t_115711

'U_FACEBOOK' => 'http://www.facebook.com/sharer.php?t=' . urlencode($topic_data['topic_title']) . '&u=' . urlencode(generate_board_url() . "/viewtopic.$phpEx?" . "t=$topic_id"),

should be:
'U_FACEBOOK' => 'http://www.facebook.com/sharer.php?t=' . urlencode($topic_data['topic_title']) . '&u=' . urlencode(generate_board_url() . "/viewtopic.$phpEx?" . "f=$forum_id&t=$topic_id"),