Philipp,
When I add a bookmark, redirect goes to the topic. How can I make it redirect to the list of bookmarks instead, or to index?
Bookmarks Mod by Philipp, question about redirect
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Hi fahraeus,
im not sure, but try this:
I hope this will help you.
So long,
triplex.
im not sure, but try this:
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------------
#
$redirect = "viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start&postdays=$post_days&postorder=$post_order&highlight=" . $HTTP_GET_VARS['highlight'];
#
#-----[ REPLACE WITH ]----------------------------------------
#
$redirect = "index.$phpEx?";
#
#-----[ FIND ]------------------------------------------------
#
remove_bookmark($topic_id);
}
}
else
{
if (isset($HTTP_GET_VARS['setbm']) && $HTTP_GET_VARS['setbm'])
{
#
#-----[ INLINE FIND ]------------------------------------------------
#
}
else
{
#
#-----[ AFTER ADD ]------------------------------------------------
#
$redirect = "viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start&postdays=$post_days&postorder=$post_order&highlight=" . $HTTP_GET_VARS['highlight'];
So long,
triplex.