diff --git a/setup/wizard/steps/registration.php b/setup/wizard/steps/registration.php
index 67c044b..ae3b6e7 100644
--- a/setup/wizard/steps/registration.php
+++ b/setup/wizard/steps/registration.php
@@ -90,10 +90,12 @@ class registration extends Step
$this->temp_variables['first_name'] = $this->getPostSafe($reg['first_name']);
$this->temp_variables['last_name'] = $this->getPostSafe($reg['last_name']);
$this->temp_variables['email_address'] = $this->getPostSafe($reg['email_address']);
+ $this->temp_variables['reasons'] = $this->getPostSafe($reg['reasons']);;
$this->temp_variables['sel_country'] = $this->getPostSafe($reg['sel_country']);
$this->temp_variables['sel_industry'] = $this->getPostSafe($reg['sel_industry']);
$this->temp_variables['sel_organization_size'] = $this->getPostSafe($reg['sel_organization_size']);
$this->temp_variables['installation_guid'] = $this->getPostSafe($reg['installation_guid']);
+ $this->temp_variables['opt_in'] = $this->getPostSafe($reg['opt_in']);;
}
/**
@@ -113,11 +115,13 @@ class registration extends Step
$this->temp_variables['first_name'] = $_POST['submitted']['first_name'];
$this->temp_variables['last_name'] = $_POST['submitted']['last_name'];
$this->temp_variables['email_address'] = $_POST['submitted']['email_address'];
+ $this->temp_variables['reasons'] = $_POST['submitted']['reasons'];
$this->temp_variables['sel_country'] = $_POST['submitted']['country'];
$this->temp_variables['sel_industry'] = $_POST['submitted']['industry'];
$this->temp_variables['sel_organization_size'] = $_POST['submitted']['organization_size'];
// System GUID, comes from session or db, not POST
$this->temp_variables['installation_guid'] = $this->util->getSystemIdentifier(false);
+ $this->temp_variables['opt_in'] = $_POST['submitted']['opt_in'];
}
/**
diff --git a/setup/wizard/templates/registration.tpl b/setup/wizard/templates/registration.tpl
index ff9ca0c..3b16d66 100644
--- a/setup/wizard/templates/registration.tpl
+++ b/setup/wizard/templates/registration.tpl
@@ -22,7 +22,7 @@
| + | + |
| + | + + |