This commit is contained in:
arai 2017-10-24 16:35:46 +09:00 коммит произвёл Benjamin Bouvier
Родитель 5a6e0bb7af
Коммит 8572a97d2a
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,7 @@ function has_permissions()
$split = explode("@", $_SESSION['persona'], 2); $split = explode("@", $_SESSION['persona'], 2);
if ($split[0] == 'hv1989' && split[1] == "gmail.com") { if ($split[0] == 'hv1989' && $split[1] == "gmail.com") {
return true; return true;
} }
@ -73,6 +73,10 @@ function has_permissions()
return true; return true;
} }
if ($split[0] == 'arai.unmht' && $split[1] == "gmail.com") {
return true;
}
return false; return false;
} }