Do not display evoadmin in the ftp account creation form

This commit is contained in:
Ludovic Poujol 2018-12-11 16:09:08 +01:00
parent 8429351213
commit cc08313e1f
1 changed files with 1 additions and 0 deletions

View File

@ -256,6 +256,7 @@ function get_owner_list() {
foreach(array_keys($usernames) as $cur) {
if(preg_match('/^www-/', $cur)) { continue; }
if($cur == "evoadmin") { continue; }
if(empty($usernames["www-$cur"])) { continue; }
$owner_list[] = $cur;
}