Fix provisioning

This commit is contained in:
Albert Santoni 2015-06-16 16:04:20 -04:00
parent a338616aca
commit 0b6fb9882a
1 changed files with 6 additions and 2 deletions

View File

@ -112,8 +112,12 @@ class ProvisioningHelper
$this->dbowner = $_POST['dbowner'];
$this->instanceId = $_POST['instanceid'];
$this->stationName = $_POST['station_name'];
$this->description = $_POST['description'];
if (isset($_POST['station_name'])) {
$this->stationName = $_POST['station_name'];
}
if (isset($_POST['description'])) {
$this->description = $_POST['description'];
}
}
/**