Hmm próbowałem to zrobić, lecz w tym pliku mam takie coś:
//-----------------------------------------
// Make sure it's a "proper" url
//-----------------------------------------
if ( ! preg_match( "/^(http|ftp|https|news):\/\//i", $url['show'] )) $skip_it = 1;
$show = $url['show'];
if ($skip_it != 1)
{
$stripped = preg_replace( "#^(http|ftp|https|news)://(\S+)$#i", "\\2", $url['show'] );
$uri_type = preg_replace( "#^(http|ftp|https|news)://(\S+)$#i", "\\1", $url['show'] );
$show = $uri_type.'://'.substr( $stripped , 0, 35 ).'...'.substr( $stripped , -15 );
}
$urln = preg_quote( "http://www.adres-mojej-strony.pl", '/' );
return preg_match( '/'.$urln.'/i', $url['html'] ) ? ( isset($url['st']) ? $url['st'] : '' ) . "<a href=\"".$url['html']."\" target=\"_blank\">".$show."</a>" . $url['end'] : ( isset($url['st']) ? $url['st'] : '' ) . "<a href=\"".$url['html']."\" rel=\"nofollow\" target=\"_blank\">".$show."</a>" . $url['end'];
Tutaj musze zmienić? Jeśli nie to może Dawid podasz "opis" tak jak mam tutaj: "Make sure it's a "proper" url"