From 2fdda24bd3081310fc4d99c637303f03e4260bcc Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 5 Jun 2014 18:29:47 +0200 Subject: [PATCH] Add feedback_thanks to the list of reserved names --- public/vroom.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/vroom.pl b/public/vroom.pl index 92ab968..3639220 100755 --- a/public/vroom.pl +++ b/public/vroom.pl @@ -344,7 +344,7 @@ helper valid_room_name => sub { my ($name) = @_; my $ret = undef; # A few names are reserved - my @reserved = qw(about help feedback goodbye admin create localize action missing dies password kicked invitation); + my @reserved = qw(about help feedback feedback_thanks goodbye admin create localize action missing dies password kicked invitation); if ($name =~ m/^[\w\-]{1,49}$/ && !grep { $name eq $_ } @reserved){ $ret = 1; }