mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Avoid error caused by calling member method statically
This commit is contained in:
parent
a66b34c8fc
commit
2352640ad7
@ -3318,7 +3318,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