Nach Einbau sind leider keine Änderungen sichtbar!
Code: Alles auswählen
#########################################################
#########################################################
## This hack was made to help stop ##
## direct linking to websites ##
#########################################################
#########################################################
## MAKE BACKUPS!! ##
## MAKE BACKUPS!! ##
## Installation Level: Easy ##
## Installation Time: 5 minutes ##
## Files to edit: 1 ##
## bbcode.php ##
## ##
#########################################################
##Author Note: ##
## If you need any help at all, contact ##
## me at jt6141@gmail.com or at legacy-rpg.com ##
#########################################################
#
#-----[ OPEN ]---------------------------------------
#
open includes/bbcode.php
#
#-----[ FIND ]---------------------------------------
#(line 627)
find $ret = preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);
#
#-----[ REPLACE WITH ]-------------------------------
#
replace with $ret = preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"http://www.anonym.to/?\\2\" target=\"_blank\">\\2</a>", $ret);
#
#-----[ FIND ]---------------------------------------
#(line 633)
find $ret = preg_replace("#(^|[\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);
#
#-----[ REPLACE WITH ]-------------------------------
#
replace with $ret = preg_replace("#(^|[\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"http://www.anonym.to/?http://\\2\" target=\"_blank\">\\2</a>", $ret);
#
#-----[ FIND ]---------------------------------------
#(line 653)
find $text = preg_replace("#<!-- BBCode auto-link start --><a href=\"(.*?)\" target=\"_blank\">.*?</a><!-- BBCode auto-link end -->#i", "\\1", $text);
#
#-----[ REPLACE WITH ]-------------------------------
#
replace with $text = preg_replace("#<!-- BBCode auto-link start --><a href=\"http://www.anonym.to/?(.*?)\" target=\"_blank\">.*?</a><!-- BBCode auto-link end -->#i", "\\1", $text);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM