1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2026-01-03 17:02:30 +03:00

model/Config.php:

- Config::read(): error_log() attemps to read undefined config options


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1549 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
Christian Boltz
2013-10-31 21:02:04 +00:00
parent c6ca4f9bae
commit f748f31137

View File

@@ -101,6 +101,8 @@ final class Config {
}
break;
}
error_log('Config::read(): attemp to read undefined config option "' . join('.', $name) . '", returning null');
return null;
}