]> git.mxchange.org Git - friendica.git/blobdiff - include/cronhooks.php
Issue 3326: We are now completely working with utf8mb4
[friendica.git] / include / cronhooks.php
index af5ab9f922cf4046554595e62d530345d730ca28..bea0f6a198a13121fc9df746b5e8db8cf8b3eddf 100644 (file)
@@ -16,7 +16,7 @@ function cronhooks_run(&$argv, &$argc){
                return;
        }
 
-       $last = get_config('system','last_cronhook');
+       $last = get_config('system', 'last_cronhook');
 
        $poll_interval = intval(get_config('system','cronhook_interval'));
        if(! $poll_interval)
@@ -45,7 +45,7 @@ function cronhooks_run(&$argv, &$argc){
 
        logger('cronhooks: end');
 
-       set_config('system','last_cronhook', time());
+       set_config('system', 'last_cronhook', time());
 
        return;
 }