Seite 1 von 1
url bbcode frage
Verfasst: 04.03.2007 23:55
von digdig2k6
es ist doch sicherlich möglich das alle links die in meinem vorum gepostet werden automatisch über
versteckt.ath.cx gehen
also wenn jemand
http://www.phpbb.de schreibt das dann von alleine als link
http://versteckt.ath.cx/?http://www.phpbb.de kommt.
wenn ja wie geht das wäre nett
danke
Verfasst: 05.03.2007 20:31
von digdig2k6
hat keiner eine aw?
geht bestimmt in der bbvode.php
Code: Alles auswählen
// We do URLs in several different ways..
$bbcode_tpl['url1'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
$bbcode_tpl['url1'] = str_replace('{DESCRIPTION}', '\\1', $bbcode_tpl['url1']);
$bbcode_tpl['url2'] = str_replace('{URL}', 'http://\\1', $bbcode_tpl['url']);
$bbcode_tpl['url2'] = str_replace('{DESCRIPTION}', '\\1', $bbcode_tpl['url2']);
$bbcode_tpl['url3'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
$bbcode_tpl['url3'] = str_replace('{DESCRIPTION}', '\\2', $bbcode_tpl['url3']);
$bbcode_tpl['url4'] = str_replace('{URL}', 'http://\\1', $bbcode_tpl['url']);
$bbcode_tpl['url4'] = str_replace('{DESCRIPTION}', '\\3', $bbcode_tpl['url4']);
$bbcode_tpl['show'] = str_replace('{HTEXTE}', '\\1', $bbcode_tpl['show']);
$bbcode_tpl['email'] = str_replace('{EMAIL}', '\\1', $bbcode_tpl['email']);
define("BBCODE_TPL_READY", true);
return $bbcode_tpl;
}