Bookmarks Mod by Philipp, question about redirect

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
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.
Antworten
fahraeus
Mitglied
Beiträge: 14
Registriert: 26.10.2005 04:43

Bookmarks Mod by Philipp, question about redirect

Beitrag von fahraeus »

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?
Triplex
Mitglied
Beiträge: 95
Registriert: 05.01.2003 14:45

Beitrag von Triplex »

Hi fahraeus,

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'];
I hope this will help you.

So long,
triplex.
fahraeus
Mitglied
Beiträge: 14
Registriert: 26.10.2005 04:43

Beitrag von fahraeus »

Thank you very much for your reply Triplex, I will try this shortly and get back to you with the results... :)
fahraeus
Mitglied
Beiträge: 14
Registriert: 26.10.2005 04:43

Beitrag von fahraeus »

It works perfectly. :D

Thank you so much again!
Antworten

Zurück zu „phpBB 2.0: Mod Support“