1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

PHP Warning removal.

This commit is contained in:
Cameron
2016-04-14 16:54:59 -07:00
parent 48f65c823f
commit 93ef3ed107

View File

@@ -64,11 +64,14 @@ class e_admin_log
* @return none * @return none
*/ */
public function __construct($options = array()) public function __construct($options = array())
{
if(!empty($options))
{ {
foreach ($options as $key=>$val) foreach ($options as $key=>$val)
{ {
$this->_options[$key] = $val; $this->_options[$key] = $val;
} }
}
define("E_LOG_INFORMATIVE", 0); // Minimal Log Level, including really minor stuff define("E_LOG_INFORMATIVE", 0); // Minimal Log Level, including really minor stuff
define("E_LOG_NOTICE", 1); // More important than informative, but less important than notice define("E_LOG_NOTICE", 1); // More important than informative, but less important than notice