API: instantiate m_message for logging
Without this global instance, nothing works during the bootstrap: all calls to log() crash because the instance does not exist. closes: #419
This commit is contained in:
parent
3c83f33935
commit
a4486fcf88
|
@ -72,6 +72,7 @@ $mem=new m_mem();
|
||||||
$err=new m_err();
|
$err=new m_err();
|
||||||
$authip=new m_authip();
|
$authip=new m_authip();
|
||||||
$hooks=new m_hooks();
|
$hooks=new m_hooks();
|
||||||
|
$msg = new m_messages();
|
||||||
|
|
||||||
|
|
||||||
for($i=0;$i<count($classes);$i++) {
|
for($i=0;$i<count($classes);$i++) {
|
||||||
|
|
Loading…
Reference in New Issue