From 2a00e86a2ea4108d8e0ba14068bb12d344eee0c0 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 25 Jun 2015 23:19:34 +0200 Subject: [PATCH] password is not reserved anymore --- vroom.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vroom.pl b/vroom.pl index 17fe9d8..f87b7ea 100755 --- a/vroom.pl +++ b/vroom.pl @@ -100,8 +100,7 @@ helper valid_room_name => sub { my $ret = {}; # A few names are reserved my @reserved = qw(about help feedback feedback_thanks goodbye admin localize api - missing dies password kicked invitation js css img fonts snd - documentation); + missing dies kicked invitation js css img fonts snd documentation); if (!$name || $name !~ m/^[\w\-]{1,49}$/ || grep { $name eq $_ } @reserved){ return 0; }