Don't raise a blocking error
* With deprecate error class, it's only a warning, not a error. Should solve #210
This commit is contained in:
parent
6acc2c99df
commit
407d8b91da
|
@ -150,7 +150,7 @@ class m_err {
|
|||
global $msg;
|
||||
$trace = debug_backtrace();
|
||||
$caller = $trace[2];
|
||||
$msg->raise( "error","err","Deprecation warning: The old messaging class is still used by ".json_encode( $caller ));
|
||||
$msg->raise("info", "err", "Deprecation warning: The old messaging class is still used by ".json_encode($caller));
|
||||
}
|
||||
|
||||
} /* Classe m_err */
|
||||
|
|
Loading…
Reference in New Issue