2010-01-24 Javier Lanz <javier.lanz@artica.es>
* godmode/massive/massive_delete_modules.php: Fixed a small entities bug. Added io_safe_output git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5415 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
ace4c9c5b9
commit
188e4445c4
|
@ -1,3 +1,7 @@
|
|||
2010-01-24 Javier Lanz <javier.lanz@artica.es>
|
||||
* godmode/massive/massive_delete_modules.php: Fixed a small entities
|
||||
bug. Added io_safe_output
|
||||
|
||||
2012-01-23 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* pandoradb.sql
|
||||
|
|
|
@ -118,7 +118,7 @@ $table->data[0][0] = __('Modules');
|
|||
$modules = agents_get_modules();
|
||||
$modulesSelect = array();
|
||||
foreach ($modules as $module) {
|
||||
$modulesSelect[$module] = $module;
|
||||
$modulesSelect[$module] = io_safe_output($module);
|
||||
}
|
||||
$table->data[0][1] = html_print_select($modulesSelect,
|
||||
'module_name', $module_name, false, __('Select'), '', true);
|
||||
|
|
Loading…
Reference in New Issue