* ImportExport: fix PHP Fatal in import wizard in minimal install

This commit is contained in:
Ralf Becker 2016-06-22 10:20:33 +02:00
parent 43eb31682a
commit 1e1739668e

View File

@ -81,7 +81,7 @@ class importexport_wizard_basic_import_csv
case 'next':
// Move sample file to temp
if($content['file']['tmp_name']) {
$GLOBALS['egw']->session->appsession('csvfile',$content['application'],$content['file']['tmp_name']);
Api\Cache::setSession($content['application'], 'csvfile', $content['file']['tmp_name']);
}
unset($content['file']);
return $GLOBALS['egw']->importexport_definitions_ui->get_step($content['step'],1);