From 44b781fd6303ffd20062dc7ca45200be7e1565bb Mon Sep 17 00:00:00 2001 From: "Mr. E23" Date: Mon, 19 Jan 2004 21:36:25 +0000 Subject: [PATCH] Added irc:// to list of recognized URLs --- includes/OutputPage.php | 1 + 1 file changed, 1 insertion(+) 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 ); -- 2.20.1