1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 09:51:29 +00:00

make plaintext urls in article content clickable

This commit is contained in:
Andrew Dolgov
2010-11-26 13:13:09 +03:00
parent 0f41fce845
commit 533c0ea6ec

View File

@@ -3671,6 +3671,8 @@
$res = preg_replace('/<img[^>]+>/is', '', $res);
}
$res = rewrite_urls($res);
$charset_hack = '<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>';
@@ -7040,4 +7042,15 @@
}
function rewrite_urls($line) {
global $url_regex;
$urls = null;
$result = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
"<a target=\"_blank\" href=\"\\1\">\\1</a>", $line);
return $result;
}
?>