Issue-#3873

Replace deprecated functions with new syntax.
This commit is contained in:
Adam Magness 2017-11-06 21:22:52 -05:00
parent 9eb1f4b9c3
commit 0dfa57948f
124 changed files with 819 additions and 679 deletions

View file

@ -816,7 +816,7 @@ class Worker {
return;
}
set_config("system", "worker_started", time());
Config::set("system", "worker_started", time());
// Do we have enough running workers? Then we quit here.
if (self::tooMuchWorkers()) {
@ -935,7 +935,7 @@ class Worker {
}
$priority = PRIORITY_MEDIUM;
$dont_fork = get_config("system", "worker_dont_fork");
$dont_fork = Config::get("system", "worker_dont_fork");
$created = datetime_convert();
if (is_int($run_parameter)) {