2010-01-21 Miguel de Dios <miguel.dedios@artica.es>

* godmode/setup/setup.php: fix bug that overwrite the row of "Attachment
	store" field when put the row of field "IP list with API access".



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2296 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-01-22 12:39:25 +00:00
parent fc9cdbcc55
commit b186dbf6a9
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-01-21 Miguel de Dios <miguel.dedios@artica.es>
* godmode/setup/setup.php: fix bug that overwrite the row of "Attachment
store" field when put the row of field "IP list with API access".
2010-01-21 Miguel de Dios <miguel.dedios@artica.es>
* ChangeLog: fix mistake with dates, sorry.

View File

@ -114,10 +114,10 @@ $table->data[12][1] .= __('No').'&nbsp;'.print_radio_button ('compact_header', 0
$table->data[14][0] = __('Attachment store');
$table->data[14][1] = print_input_text ('attachment_store', $config["attachment_store"], '', 50, 255, true);
$table->data[14][0] = __('IP list with API access') .
$table->data[15][0] = __('IP list with API access') .
print_help_tip (__("The list of IPs separate with carriage return."), true);
$list_ACL_IPs_for_API = get_parameter('list_ACL_IPs_for_API', implode("\n", $config['list_ACL_IPs_for_API']));
$table->data[14][1] = print_textarea('list_ACL_IPs_for_API', 10, 15, $list_ACL_IPs_for_API, null, true);
$table->data[15][1] = print_textarea('list_ACL_IPs_for_API', 10, 15, $list_ACL_IPs_for_API, null, true);
enterprise_hook ('setup');