Commit 0b699b7b authored by eseyman%linagora.com's avatar eseyman%linagora.com

Remove unnecessary '\' from a regexp (':' is not a special character)

This is a nitpick from bug #441503
parent d5a67a2b
......@@ -98,7 +98,7 @@ if ($LDAPserver eq "") {
}
my $LDAPconn;
if($LDAPserver =~ /\:\/\//) {
if($LDAPserver =~ /:\/\//) {
# if the "LDAPserver" parameter is in uri scheme
$LDAPconn = Net::LDAP->new($LDAPserver, version => 3);
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment