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:
azerttyu 2017-11-19 15:09:04 +01:00
parent 6acc2c99df
commit 407d8b91da
1 changed files with 1 additions and 1 deletions

View File

@ -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 */