SF.net SVN: postfixadmin:[1549] trunk/model/Config.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <chr...@us...> - 2013-10-31 21:02:06
|
Revision: 1549
http://sourceforge.net/p/postfixadmin/code/1549
Author: christian_boltz
Date: 2013-10-31 21:02:04 +0000 (Thu, 31 Oct 2013)
Log Message:
-----------
model/Config.php:
- Config::read(): error_log() attemps to read undefined config options
Modified Paths:
--------------
trunk/model/Config.php
Modified: trunk/model/Config.php
===================================================================
--- trunk/model/Config.php 2013-10-31 20:52:45 UTC (rev 1548)
+++ trunk/model/Config.php 2013-10-31 21:02:04 UTC (rev 1549)
@@ -101,6 +101,8 @@
}
break;
}
+
+ error_log('Config::read(): attemp to read undefined config option "' . join('.', $name) . '", returning null');
return null;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|