From ef37a92e30c67f6720596e1177e64eef047aafb1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Kr=C3=BCger?= Date: Sun, 9 Jan 2011 18:53:10 +0100 Subject: [PATCH] Girocco::Util: make more characters valid in homepage URLs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan Krüger --- Girocco/Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Girocco/Util.pm b/Girocco/Util.pm index 7c7cddb..fe125ea 100644 --- a/Girocco/Util.pm +++ b/Girocco/Util.pm @@ -107,7 +107,7 @@ sub valid_email_multi { } sub valid_web_url { $_ = $_[0]; - /^https?:\/\/[a-zA-Z0-9-.]+(\/[_\%a-zA-Z0-9.\/~:?&-]*)?(#[a-zA-Z0-9._-]+)?$/; + /^https?:\/\/[a-zA-Z0-9-.]+(\/[_\%a-zA-Z0-9.\/~:?&=;-]*)?(#[a-zA-Z0-9._-]+)?$/; } sub valid_repo_url { $_ = $_[0]; -- 2.11.4.GIT