From: Mr. E23 Date: Mon, 19 Jan 2004 21:36:25 +0000 (+0000) Subject: Added irc:// to list of recognized URLs X-Git-Tag: 1.3.0beta1~1129 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=44b781fd6303ffd20062dc7ca45200be7e1565bb;p=lhc%2Fweb%2Fwiklou.git Added irc:// to list of recognized URLs --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 2bec68fd7a..1ccc5b51d5 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -864,6 +864,7 @@ $t[] = "" ; $text = $this->subReplaceExternalLinks( $text, "http", true ); $text = $this->subReplaceExternalLinks( $text, "https", true ); $text = $this->subReplaceExternalLinks( $text, "ftp", false ); + $text = $this->subReplaceExternalLinks( $text, "irc", false ); $text = $this->subReplaceExternalLinks( $text, "gopher", false ); $text = $this->subReplaceExternalLinks( $text, "news", false ); $text = $this->subReplaceExternalLinks( $text, "mailto", false );