diff options
author | thomascube <thomas@roundcube.net> | 2008-07-29 12:32:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-07-29 12:32:19 +0000 |
commit | f92aba3918575f30f577542753a2912df5729374 (patch) | |
tree | d14e1c6b27bfa7219a906be7a8fd9540daa7aae0 /program/steps/addressbook/edit.inc | |
parent | 8c72e33d3764cf2695256ab9c2a490d4c4f53696 (diff) |
Add microformats to address book + fix html output + codestyle
Diffstat (limited to 'program/steps/addressbook/edit.inc')
-rw-r--r-- | program/steps/addressbook/edit.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc index 71983fce6..61c660d94 100644 --- a/program/steps/addressbook/edit.inc +++ b/program/steps/addressbook/edit.inc @@ -90,7 +90,7 @@ function get_form_tags($attrib) if (!strlen($EDIT_FORM)) { $hiddenfields = new html_hiddenfield(array('name' => '_task', 'value' => $RCMAIL->task)); - $hiddenfields->add(array('name' => '_action', 'value' => 'save', 'source' => get_input_value('_source', RCUBE_INPUT_GPC))); + $hiddenfields->add(array('name' => '_action', 'value' => 'save')); $hiddenfields->add(array('name' => '_source', 'value' => get_input_value('_source', RCUBE_INPUT_GPC))); $hiddenfields->add(array('name' => '_framed', 'value' => (empty($_REQUEST['_framed']) ? 0 : 1))); |