2009-08-18 Miguel de Dios <miguel.dedios@artica.es>

* include/functions_config.php: add to save the attachment_store config
	value.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1860 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2009-08-18 13:34:53 +00:00
parent c89fe7310f
commit 47cce07033
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-08-18 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php: add to save the attachment_store config
value.
2009-08-18 Miguel de Dios <miguel.dedios@artica.es> 2009-08-18 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.php: add filter parameter in ajax that * godmode/reporting/reporting_builder.php: add filter parameter in ajax that
pick the modules for select in form. The parameter is filter that don't pick the modules for select in form. The parameter is filter that don't

View File

@ -105,6 +105,7 @@ function update_config () {
update_config_value ('status_images_set', (string) get_parameter ('status_images_set', $config["status_images_set"])); update_config_value ('status_images_set', (string) get_parameter ('status_images_set', $config["status_images_set"]));
update_config_value ('agentaccess', (int) get_parameter ('agentaccess', $config['agentaccess'])); update_config_value ('agentaccess', (int) get_parameter ('agentaccess', $config['agentaccess']));
update_config_value ('flash_charts', (bool) get_parameter ('flash_charts', $config["flash_charts"])); update_config_value ('flash_charts', (bool) get_parameter ('flash_charts', $config["flash_charts"]));
update_config_value ('attachment_store', (string) get_parameter ('attachment_store', $config["attachment_store"]));
} }
/** /**