X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fcronhooks.php;h=4a852935a051a7522804c96e39a84c26b8fb2444;hb=e40c3a9d7c980c4287c273bc12d934ceb8b55fc0;hp=2c378aa39c059b71822238573f4de3bd25fafca7;hpb=7a9456d5ac2e73229b2237074c700731c63661a6;p=friendica.git diff --git a/include/cronhooks.php b/include/cronhooks.php index 2c378aa39c..4a852935a0 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -7,7 +7,7 @@ function cronhooks_run(&$argv, &$argc) { require_once 'include/datetime.php'; - if (($argc == 2) AND is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) { + if (($argc == 2) && is_array($a->hooks) && array_key_exists("cron", $a->hooks)) { foreach ($a->hooks["cron"] as $hook) { if ($hook[1] == $argv[1]) { logger("Calling cron hook '" . $hook[1] . "'", LOGGER_DEBUG); @@ -38,7 +38,7 @@ function cronhooks_run(&$argv, &$argc) { $d = datetime_convert(); - if (is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) { + if (is_array($a->hooks) && array_key_exists("cron", $a->hooks)) { foreach ($a->hooks["cron"] as $hook) { logger("Calling cronhooks for '" . $hook[1] . "'", LOGGER_DEBUG); proc_run(PRIORITY_MEDIUM, "include/cronhooks.php", $hook[1]);