[solved] Mod "Similar topic" : how to search only

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
koalaii
Mitglied
Beiträge: 6
Registriert: 04.08.2005 13:13

[solved] Mod "Similar topic" : how to search only

Beitrag von koalaii »

Hello,

Sorry "ich spreche nicht Deutsch" ???

I'm using this great mod and what i would like is this mod only looks after similar topics in the same forum as the active topic.

I think the mod should be basically as follow (line 5) :

Code: Alles auswählen


// Similar Topics 
$sql = "SELECT topic_id 
FROM ". TOPICS_TABLE ." 
WHERE topic_id != $topic_id 
???????AND FORUM_ID = forum of the current opened topic ?????? 
AND MATCH (topic_title) AGAINST ('". addslashes($topic_title) ."') 
ORDER BY topic_time DESC LIMIT 0,5"; 

etc.... 

Danke !
Zuletzt geändert von koalaii am 04.08.2005 22:28, insgesamt 1-mal geändert.
Benutzeravatar
Harki
Mitglied
Beiträge: 144
Registriert: 25.04.2005 16:03
Wohnort: Hannover
Kontaktdaten:

Beitrag von Harki »

Das hier sollte funktionieren, denke ich mir:

Code: Alles auswählen

$sql = "SELECT topic_id
FROM ". TOPICS_TABLE ."
WHERE topic_id != $topic_id
AND forum_id IN ($forum_id) 
?

Benutzung auf eigene Gefahr... ;)
koalaii
Mitglied
Beiträge: 6
Registriert: 04.08.2005 13:13

Beitrag von koalaii »

Das ist gut (???)

Danke a lot, this is the solution. I could not find the right variable.

Danke.
Antworten

Zurück zu „phpBB 2.0: Mod Support“