Ответов: 69 Просмотров: 0
|
Ничего не получается, может вы скажете что конкретно заменить файлах чтобы отрубить функцию скрытых ссылок. Я так понял что отрубается в include/fm.class.php в этой строке
[code][
/*
html_replace заменет HTML сущности с учетом таблиц преобразований ENT_QUOTES
*/
function html_replace($string) {
$_TransTable = array('&' => '&',
'"' => '"',
''' => '\'',
'<' => '<',
'>' => '>'
);
return strtr($string, $_TransTable);
}
function url_text($matches) {
if (!$this->user['id'])
return '<i>'.$this->LANG['ViewLinkReged'].'</i> ';
$matches[3] = trim($matches[3]);
if ($matches[1] === $matches[3] && strlen($matches[3]) > 32) {
$matches[3] = preg_replace("#(.{32})(.+)(.{16})#is","$1...$3",$matches[3]);
} elseif (!preg_match("#src=\"http://[A-Za-z0-9-_\./\?\&\+\;\,~=]+?\"#is",$matches[3])) {
$matches[3] = $this->chunk_split($matches[3]); /code]
Где что поменять чтобы ссылки стали видны всем пользователям |