Merge pull request #405 from janabimustafa/master

made email a requirement for ssl generation
This commit is contained in:
Serghey Rodin 2015-10-22 17:10:52 +03:00
commit 2e67a9d0ea
2 changed files with 6 additions and 0 deletions

View file

@ -40,6 +40,7 @@ if (empty($_POST['v_country'])) $errors[] = __('country');
if (empty($_POST['v_state'])) $errors[] = __('domain');
if (empty($_POST['v_locality'])) $errors[] = __('city');
if (empty($_POST['v_org'])) $errors[] = __('organization');
if (empty($_POST['v_email'])) $errors[] = __('email');
$v_domain = $_POST['v_domain'];
$v_email = $_POST['v_email'];
$v_country = $_POST['v_country'];