2009-09-28 Sancho Lerena <slerena@artica.es>
* godmode/agentes/module_manager_editor_common.php: Postprocess field is now bigger. * godmode/servers/manage_export_form.php: Export servers was incorrectly assigned. Fixed. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1984 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2afce52937
commit
f4d5f7c61f
|
@ -1,3 +1,11 @@
|
|||
2009-09-28 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* godmode/agentes/module_manager_editor_common.php: Postprocess field
|
||||
is now bigger.
|
||||
|
||||
* godmode/servers/manage_export_form.php: Export servers was incorrectly
|
||||
assigned. Fixed.
|
||||
|
||||
2009-09-26 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* include/config_process.php: Update build after last changes.
|
||||
|
|
|
@ -174,7 +174,7 @@ $table_advanced->data[2][1] = print_input_text ('module_interval', $interval,
|
|||
|
||||
$table_advanced->data[2][2] = __('Post process').' '.print_help_icon ('postprocess', true);
|
||||
$table_advanced->data[2][3] = print_input_text ('post_process',
|
||||
$post_process, '', 5, 5, true);
|
||||
$post_process, '', 7, 15, true);
|
||||
|
||||
$table_advanced->data[3][0] = __('Min. Value');
|
||||
$table_advanced->data[3][1] = print_input_text ('min', $min, '', 5, 15, true);
|
||||
|
|
|
@ -47,10 +47,10 @@ else {
|
|||
$preffix = '';
|
||||
$interval = 300;
|
||||
$ip_server = '';
|
||||
$connect_mode = 'ssh';
|
||||
$user = 'pandora';
|
||||
$connect_mode = 'tentacle';
|
||||
$user = '';
|
||||
$password = '';
|
||||
$port = 22;
|
||||
$port = 41121;
|
||||
$directory = '/var/spool/pandora/data_in';
|
||||
$options = '';
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ $table->data[0][1] = print_input_text ('name', $name, '', 25, 0, true);
|
|||
|
||||
// Export server
|
||||
$table->data[1][0] = __('Export server');
|
||||
$table->data[1][1] = print_select_from_sql ('SELECT id_server, name FROM tserver WHERE server_type = 1 ORDER BY name',
|
||||
$table->data[1][1] = print_select_from_sql ('SELECT id_server, name FROM tserver WHERE server_type = 7 ORDER BY name',
|
||||
'export_server', $export_server, '', __('None'), 0, true);
|
||||
|
||||
// Preffix
|
||||
|
|
Loading…
Reference in New Issue