2013-03-13 Miguel de Dios <miguel.dedios@artica.es>

* include/functions_modules.php: fixed the notices PHP.
	
	Fixes: #3607807




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7848 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-03-13 14:28:52 +00:00
parent 87c5be69d8
commit b1b095e11a
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2013-03-13 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_modules.php: fixed the notices PHP.
Fixes: #3607807
2013-03-13 Miguel de Dios <miguel.dedios@artica.es> 2013-03-13 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_modules.php: fixed the massive deletion of * include/functions_modules.php: fixed the massive deletion of

View File

@ -134,11 +134,11 @@ function modules_copy_agent_module_to_agent ($id_agent_module, $id_destiny_agent
if ($remote_conf) { if ($remote_conf) {
$result = enterprise_hook('config_agents_copy_agent_module_to_agent', $result = enterprise_hook('config_agents_copy_agent_module_to_agent',
array($id_agent_module, $id_new_module)); array($id_agent_module, $id_new_module));
if ($result === false)
return false;
} }
if ($result === false)
return false;
return $id_new_module; return $id_new_module;
} }