PM replied MOD und Schnellantwort

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
Max
Mitglied
Beiträge: 1051
Registriert: 20.02.2003 22:22

PM replied MOD und Schnellantwort

Beitrag von Max »

Hallo,


ich habe in meinem lokalen Testboard den PM replied-MOD eingebaut.
Soweit funktioniert er auch ganz gut.

Das Problem damit ist, dass er nicht im Ansatz reagiert, wenn man die Schnellantwort verwendet.
Ich habe schon verschiedene Wege ausprobiert, das auch für die Funktion hin zu bekommen habe auch geguckt, ob ich den Teil für die posting_body.tpl in die ropm_quick_reply.tpl eingebaut bekomme, aber auch diese Experimente blieben erfolglos. Genau so in der privmsgs_read_body.tpl

Also momentan stehe ich mit meinen Ideen am Ende.
Es wäre schön, wenn man mir dabei weiterhelfen kann, denn der MOD ist ein absolut nützlicher Zusatz, da aber die meisten die Schnellantwort benutzen, kommt er garnicht richtig zur Geltung.



Gruß Max
Benutzeravatar
daruler
Mitglied
Beiträge: 549
Registriert: 14.04.2004 19:42
Kontaktdaten:

Beitrag von daruler »

Der Add-On:

Code: Alles auswählen

############################################################## 
## MOD Title: PM replied Image Addon for PM Quick Reply
## MOD Author: Kleopatra < admin@kleo.org > (Kathleen) http://www.kleo.org
## MOD Description:	This Addon is for working PM replied Image with
##					PM Quick Reply v1.3.5 (Rondom, http://www.rondom.gu2.info)
## MOD Version: 1.0
## 
## Installation Level:	Easy
## Installation Time:	5 Minutes
## Files To Edit: templates/subSilver/ropm_quick_reply.tpl, privmsg.php 
##	 			  includes/ropm_quick_reply.php 
##
## Included Files: n/a
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes:
##
## This MOD is EasyMOD Friendly! 
##
##	You must have installed PM replied Image MOD and PM Quick Reply MOD before.
##
##
############################################################## 
## MOD History: 
## 
##  2004-11-18 - Version 1.0
##		- first release
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
# 
#-----[ OPEN ]-------------------------------------------- 
# 
templates/subSilver/ropm_quick_reply.tpl 
# 
#-----[ FIND ]----------------------------------------------- 
# 
</form> 
<!-- END ROPM_QUICK_REPLY --> 
# 
#-----[ BEFORE, ADD ]----------------------------------------- 
# 
<input type="hidden" name="reply" value="{REPLY}" /><input type="hidden" name="id" value="{REPLY_ID}" /> 
# 
#-----[ OPEN ]-------------------------------------------- 
# 
privmsg.php 
# 
#-----[ FIND ]----------------------------------------------- 
# 
   if (($mode == "reply") OR ($mode == "quote")) 
   { 
      $privmsg_reply = 1; 
# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
   if (($mode == "reply") OR ($mode == "quote") OR ($mode == "read")) 
   { 
      $privmsg_reply = 1; 
# 
#-----[ FIND ]----------------------------------------------- 
# 
if  (($mode == "reply") OR ($mode == "quote")) 
{ 
   $privmsg_reply_id = $privmsg_id; 
# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
if  (($mode == "reply") OR ($mode == "quote") OR ($mode == "read")) 
{ 
   $privmsg_reply_id = $privmsg_id; 
# 
#-----[ OPEN ]-------------------------------------------- 
# 
includes/ropm_quick_reply.php 
# 
#-----[ FIND ]----------------------------------------------- 
# 
      'IMG_URL' => $images['bbc_url'] 
# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 
     'REPLY' => $privmsg_reply, 
     'REPLY_ID' => $privmsg_reply_id, 
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------ 
# 
# EOM
Antworten

Zurück zu „phpBB 2.0: Mod Support“