2012-05-12 Junichi Satoh <junichi@rworks.jp>
* godmode/reporting/reporting_builder.item_editor.php: Wrapped inventory_get_agents() in enterprise_hook(); git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6295 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
f72b1b3e58
commit
60410f8350
|
@ -1,3 +1,8 @@
|
|||
2012-05-12 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* godmode/reporting/reporting_builder.item_editor.php: Wrapped
|
||||
inventory_get_agents() in enterprise_hook();
|
||||
|
||||
2012-05-11 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* extensions/update_manager/lib/functions.php: fixed into the
|
||||
|
|
|
@ -544,7 +544,7 @@ html_print_input_hidden('id_item', $idItem);
|
|||
<td style="vertical-align: top;"><?php echo __('Agents'); ?></td>
|
||||
<td>
|
||||
<?php
|
||||
$agents = inventory_get_agents();
|
||||
$agents = enterprise_hook('inventory_get_agents');
|
||||
$agents_select = array();
|
||||
foreach($agents as $a) {
|
||||
$agents_select[$a['id_agente']] = $a['nombre'];
|
||||
|
|
Loading…
Reference in New Issue