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

This commit is contained in:
Nathan Gray 2013-04-23 16:05:13 +00:00
parent 6f124f4b10
commit 4b2b4ca336

View File

@ -861,7 +861,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;