Skip to content
Snippets Groups Projects
Commit 82d6e51a authored by vogelor's avatar vogelor
Browse files

fixed a typo in remote-actions

parent 196c29c2
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ if (isset($_POST['server_select'])) {
$servers[] = $_POST['server_select'];
}
foreach ($servers as $serverId) {
$sql = "INSERT INTO sys_remoteaction (server_id, tstamp, action_type, action_param, action_status, response) " .
$sql = "INSERT INTO sys_remoteaction (server_id, tstamp, action_type, action_param, action_state, response) " .
"VALUES (".
(int)$serverId . ", " .
time() . ", " .
......
......@@ -74,7 +74,7 @@ if (isset($_POST['server_select'])) {
$servers[] = $_POST['server_select'];
}
foreach ($servers as $serverId) {
$sql = "INSERT INTO sys_remoteaction (server_id, tstamp, action_type, action_param, action_status, response) " .
$sql = "INSERT INTO sys_remoteaction (server_id, tstamp, action_type, action_param, action_state, response) " .
"VALUES (".
(int)$serverId . ", " .
time() . ", " .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment