* PHP7/ImportExport: fix different evaluation order of PHP 5 and 7 gives eg. error "Function name must be string" in wizard

This commit is contained in:
Ralf Becker
2016-07-07 20:25:32 +02:00
parent 512bc77cfd
commit 2c238b7071
5 changed files with 15 additions and 15 deletions

View File

@ -3391,7 +3391,7 @@ class Mail
//highest precedence
try
{
$_folderName = $this->icServer->$types[$_type]['profileKey'];
$_folderName = $this->icServer->{$types[$_type]['profileKey']};
}
catch (\Exception $e)
{