Seite 1 von 1

PM replied MOD und Schnellantwort

Verfasst: 23.11.2004 06:30
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

Verfasst: 16.05.2005 21:03
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