Seite 1 von 1

xxx ist nicht für fremde Inhalte verantwortlich, wie baue...

Verfasst: 09.02.2005 16:57
von Cyber Sonic
Hallo,

wenn ich hier im Forum von phpbb2.de z.B. nach Bilder verlinke, z.B. so:

Link:
http://www.web-upload.de/data/media/23/ ... k-dave.jpg

So steht bei mir oben rechts im Internet Explorer:
"phpBB2.de ist nicht für fremde Inhalte verantwortlich."

Dies hätte ich auch gerne so in meinem Forum:
"x65-board.de.vu ist nicht für fremde Inhalte verantwortlich."

Gibt es dafür einen einen Mod? Oder wie baue ich das in mein Forum
ein?

mfg
Cyber Sonic

Re: xxx ist nicht für fremde Inhalte verantwortlich, wie bau

Verfasst: 09.02.2005 17:02
von punkface
Cyber Sonic hat geschrieben:wenn ich hier im Forum von phpbb2.de
Das hier ist phpbb.de -.-

Bei phpbb2.de mal nach "rlink" Suchen, und dann findest du was du suchst.

Verfasst: 09.02.2005 17:35
von Cyber Sonic
Hallo,

Also dieser Mod soll dafür sorgen:

Code: Alles auswählen

############################################################## 
## MOD Title: Author Hyperlink
## MOD Author: tosspot <tosspot@markf.mailshell.com> Mark Fyvie 
## MOD Description: By default the author name in a message is not a hyperlink. This mod makes 
## it a URL to the poster's profile. This might be more intuitive for some users compared to the profile button.
## MOD Version: 1.0.0 
## 
## Installation Level: easy 
## Installation Time: 1 Minute 
## Files To Edit: viewtopic.php 
## Included Files: n/a 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ 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/downloads/ 
############################################################## 
## Author Notes: 
## The default colour for the author before applying this mod is black. After applying the mod it will be blue, since it
## is following the "genmed" class. Feel free to modify this part to another class, or to add an additional class if you don't
## like the colour.
############################################################## 
## MOD History: 
## 1.0.0 - Initial version 19.05.2003
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ OPEN ]------------------------------------------ 
# 
viewtopic.php
# 
#-----[ FIND ]------------------------------------------ 
# 
	$poster = ( $poster_id == ANONYMOUS ) ? $lang['Guest'] : $postrow[$i]['username'];
# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
	$poster = ( $poster_id != ANONYMOUS ) ? '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $poster_id) . '" class="genmed">' : '';
	$poster .= ( $poster_id != ANONYMOUS ) ? $postrow[$i]['username'] : ( ( $postrow[$i]['post_username'] != '' ) ? $postrow[$i]['post_username'] : $lang['Guest'] );
	$poster .= ( $poster_id != ANONYMOUS ) ? '</a>' : '';
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM 

Ich habe "$poster = ( $poster_id == ANONYMOUS ) ? $lang['Guest'] : $postrow[$i]['username'];" ersätzt, doch nichts passiert!! Alles beim Alten! Woran liegt das bitte?

mfg
Cyber Sonic

Verfasst: 09.02.2005 18:13
von punkface
Hast du dir mal die Beschreibung des MODs durchgelesen, den du hier gepostet hast? Anscheinend nicht..

Du solltest ganz normal nach "rlink" suchen, und hättest du das gemacht, hättest du unteranderen diesen Thread gefunden

http://phpbb2.de/ftopic21411.html

Verfasst: 09.02.2005 19:25
von larsneo