From ea4d220a5923359d68eb4f86fcd73043175ca0da Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Fri, 1 Sep 2017 03:27:24 +0200 Subject: [PATCH] Fix old script name after recent features merge --- inc/accounts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/accounts.php b/inc/accounts.php index 384782c..2b602e6 100644 --- a/inc/accounts.php +++ b/inc/accounts.php @@ -71,7 +71,7 @@ function web_add($form, $admin_mail) { if ( $form->getField('domain_alias')->getValue() ) { $domain_alias = preg_split('/,/', $form->getField('domain_alias')->getValue()); foreach ( $domain_alias as $domain ) { - $exec_cmd = 'web-add-multi.sh add-alias '.$form->getField('username')->getValue().' '; + $exec_cmd = 'web-add.sh add-alias '.$form->getField('username')->getValue().' '; $domain = trim($domain); $exec_cmd .= $domain.' '. $server_list; sudoexec($exec_cmd, $exec_output, $exec_return);