Fix context menu 'Use all' checkbox -> export had no data

This commit is contained in:
Nathan Gray 2013-05-06 14:22:23 +00:00
parent 41597fd897
commit f750656933

View File

@ -853,7 +853,7 @@ class addressbook_ui extends addressbook_bo
'menuaction' => 'importexport.importexport_export_ui.export_dialog',
'appname' => 'addressbook',
'plugin' => 'addressbook_export_contacts_csv',
'selection' => $use_all ? 'use_all' : implode(',',$checked)
'selection' => $use_all ? 'all' : implode(',',$checked)
))."','_blank',850,440);");
$success = count($checked);
return true;