var banned_image_hosts = /fix2pix|imagebanana|hidebehind/i; // imageshack
var src = $img[0].src;
if (src.match(banned_image_hosts)) {
$img.wrap('<a href="'+ this.src +'" target="_blank"></a>').attr({ src: "{SITE_URL}images/tr_oops.gif", title: "{L_SCREENSHOTS_RULES}" });
}
return $img;
function initExternalLinks(context)
{
var context = context || 'body';
if (ExternalLinks_InNewWindow) {
$("a.postLink:not([href*='"+ window.location.hostname +"/'])", context).attr({ target: '_blank' });
//$("a.postLink:not([@href*='"+ window.location.hostname +"/'])", context).replaceWith('<span style="color: red;">Ссылки запрещены</span>');
}
}
Нет, тут же вроде ясно написано, что если ссылка не внутренняя, то открывать в новой вкладке.А это
случаем не на подобии как рубит картинки, только он ссылки?PHP:function initExternalLinks(context) { var context = context || 'body'; if (ExternalLinks_InNewWindow) { $("a.postLink:not([href*='"+ window.location.hostname +"/'])", context).attr({ target: '_blank' }); //$("a.postLink:not([@href*='"+ window.location.hostname +"/'])", context).replaceWith('<span style="color: red;">Ссылки запрещены</span>'); } }