mirror of
https://github.com/friendica/friendica
synced 2025-04-28 00:30:10 +00:00
Issue-#3873
Replace deprecated functions with new syntax.
This commit is contained in:
parent
9eb1f4b9c3
commit
0dfa57948f
124 changed files with 819 additions and 679 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue