Scenes/Automation function Fixs

This commit is contained in:
JonatanRek
2019-10-13 10:07:03 +02:00
parent 875fbccd6e
commit 986bcff3c8
7 changed files with 28 additions and 16 deletions

View File

@@ -1,8 +1,10 @@
<?php
if (isset($_POST) && !empty($_POST)){
if (sset($_POST['devices']) && $_POST['devices'] != '') {
if (isset($_POST['submitFinal']) && $_POST['submitFinal'] != "") {
SceneManager::create($_POST['sceneIcon'], $_POST['sceneName'], json_encode($_POST['devices']));
header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
die();
}
//Debug
@@ -13,7 +15,4 @@ if (isset($_POST) && !empty($_POST)){
echo '<a href="/' . BASEDIR . strtolower(basename(__FILE__, '.php')).'">CONTINUE</a>';
die();
}
header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
die();
}