diff options
author | thomascube <thomas@roundcube.net> | 2008-09-04 10:22:56 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-04 10:22:56 +0000 |
commit | 30276ce7a464d5124f8dae2e1f23a7c9b52c165d (patch) | |
tree | 6a75b74aea8de52a2a6240aee29c972604eede59 /program/steps | |
parent | e1eafd03a2e86e1513c4ab2287ac7ba2417ff761 (diff) |
Fix html links for address book directories
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/addressbook/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc index 51a45f97d..43d117430 100644 --- a/program/steps/addressbook/func.inc +++ b/program/steps/addressbook/func.inc @@ -73,7 +73,7 @@ function rcmail_directory_list($attrib) $out .= sprintf($line_templ, 'rcmli'.$local_id, !$current ? 'selected' : '', - Q(rcmail_url('list', array('_source' => 0))), + Q(rcmail_url(null, array('_source' => 0))), JS_OBJECT_NAME, $local_id, JS_OBJECT_NAME, @@ -99,7 +99,7 @@ function rcmail_directory_list($attrib) $out .= sprintf($line_templ, 'rcmli'.$dom_id, $current == $id ? 'selected' : '', - Q(rcmail_url('list', array('_source' => $id))), + Q(rcmail_url(null, array('_source' => $id))), JS_OBJECT_NAME, $js_id, JS_OBJECT_NAME, |