From 8572a97d2aea745f6b5433e411af2a7872a9cfae Mon Sep 17 00:00:00 2001 From: arai Date: Tue, 24 Oct 2017 16:35:46 +0900 Subject: [PATCH] Allow arai on tryserver --- website/lib/internals.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/lib/internals.php b/website/lib/internals.php index 4ed7271..628ebdd 100755 --- a/website/lib/internals.php +++ b/website/lib/internals.php @@ -65,7 +65,7 @@ function has_permissions() $split = explode("@", $_SESSION['persona'], 2); - if ($split[0] == 'hv1989' && split[1] == "gmail.com") { + if ($split[0] == 'hv1989' && $split[1] == "gmail.com") { return true; } @@ -73,6 +73,10 @@ function has_permissions() return true; } + if ($split[0] == 'arai.unmht' && $split[1] == "gmail.com") { + return true; + } + return false; }