mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 16:55:05 +02:00
2014-05-28 Sergio Martin <sergio.martin@artica.es>
* godmode/agentes/configurar_agente.php: Fixed field that wasn't saved on DB in WMI modules for ticket #794 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10028 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
490d1b603e
commit
69c537f9d1
@ -1,3 +1,8 @@
|
|||||||
|
2014-05-28 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* godmode/agentes/configurar_agente.php: Fixed field that
|
||||||
|
wasn't saved on DB in WMI modules for ticket #794
|
||||||
|
|
||||||
2014-05-27 Alejandro Gallardo <alejandro.gallardo@artica.es>
|
2014-05-27 Alejandro Gallardo <alejandro.gallardo@artica.es>
|
||||||
|
|
||||||
* extensions/files_repo.php: Fixed a weird error when
|
* extensions/files_repo.php: Fixed a weird error when
|
||||||
|
@ -806,8 +806,8 @@ if ($update_module || $create_module) {
|
|||||||
$tcp_rcv = (string) get_parameter ('tcp_rcv');
|
$tcp_rcv = (string) get_parameter ('tcp_rcv');
|
||||||
$tcp_port = (int) get_parameter ('tcp_port');
|
$tcp_port = (int) get_parameter ('tcp_port');
|
||||||
// Correction in order to not insert 0 as port
|
// Correction in order to not insert 0 as port
|
||||||
$is_port_empty = get_parameter ('tcp_port');
|
$is_port_empty = get_parameter ('tcp_port', '');
|
||||||
if (empty($is_port_empty))
|
if ($is_port_empty === '')
|
||||||
$tcp_port = NULL;
|
$tcp_port = NULL;
|
||||||
$configuration_data = (string) get_parameter ('configuration_data');
|
$configuration_data = (string) get_parameter ('configuration_data');
|
||||||
$old_configuration_data = (string) get_parameter ('old_configuration_data');
|
$old_configuration_data = (string) get_parameter ('old_configuration_data');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user