Merge pull request #4313 from tobiasd/20180123-vier

Config::get returns null if value not set, so the check needs to be adopted
This commit is contained in:
Michael Vogel 2018-01-23 09:44:28 +01:00 committed by GitHub
commit ee1b8abcfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,11 +10,11 @@ $uid = Profile::getThemeUid();
$style = PConfig::get($uid, 'vier', 'style');
if ($style == "") {
if (empty($style)) {
$style = Config::get('vier', 'style');
}
if ($style == "") {
if (empty($style)) {
$style = "plus";
}