[FIX] Return defaults with no settings at all

This commit is contained in:
Sebastian Grewe 2014-04-04 12:51:15 +02:00
parent 022430dddb
commit f54ece7ee9

View File

@ -90,6 +90,9 @@ class Notification extends Mail {
}
}
return $aData;
} else {
foreach ($aDefaults as $type => $value) $aData[$type] = $value;
return $aData;
}
}
return $this->sqlError('E0045');