forked from extern/egroupware
Avoid error caused by calling member method statically
This commit is contained in:
parent
0c894d3771
commit
19f3f68dec
@ -3317,7 +3317,11 @@ $filter['before']= date("d-M-Y", $cutoffdate2);
|
||||
}
|
||||
if (!is_array($content)) $content = array();
|
||||
if (empty($content['FOLDER'])) $content['FOLDER']=(array)$this->mail_bo->getDraftFolder();
|
||||
if (!empty($content['FOLDER'])) $sel_options['FOLDER']=mail_compose::ajax_searchFolder(0,true);
|
||||
if (!empty($content['FOLDER']))
|
||||
{
|
||||
$compose = new mail_compose();
|
||||
$sel_options['FOLDER'] = $compose->ajax_searchFolder(0,true);
|
||||
}
|
||||
|
||||
$etpl = new Etemplate('mail.importMessage');
|
||||
$etpl->setElementAttribute('uploadForImport','onFinish','app.mail.uploadForImport');
|
||||
|
Loading…
Reference in New Issue
Block a user