From 1f9b52f2bf62a00add5b62b21e2dd009246345ef Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 6 Nov 2017 17:45:33 +0100 Subject: [PATCH] code corrections --- include/checkversion.php | 2 +- include/cron.php | 2 +- mod/admin.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/checkversion.php b/include/checkversion.php index ee6c04a557..6cd34b2ce9 100644 --- a/include/checkversion.php +++ b/include/checkversion.php @@ -22,7 +22,7 @@ function checkversion_run () { $checkurl = Config::get('system', 'check_new_version_url', 'none'); // check for new versions at all? - if ( $checkurl == 'none' ) { + if ($checkurl == 'none' ) { return; } $gitversion = dbesc(trim(fetch_url($checkurl))); diff --git a/include/cron.php b/include/cron.php index f65e5851b2..8842d3bdfa 100644 --- a/include/cron.php +++ b/include/cron.php @@ -81,7 +81,7 @@ function cron_run(&$argv, &$argc){ dba::delete('workerqueue', array('`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 12 HOUR')); // check upstream version? - proc_run(PRIORITY_LOW, 'include/checkversion.php'); + Worker::add(PRIORITY_LOW, 'checkversion'); } // Poll contacts diff --git a/mod/admin.php b/mod/admin.php index c41bcdc4a6..dba180c129 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -619,7 +619,7 @@ function admin_page_summary(App $a) { // the local version of Friendica. Check is opt-in, source may be master or devel branch if (Config::get('system', 'check_new_version_url', 'none') != 'none' ) { $gitversion = Config::get('system','git_friendica_version'); - if ( version_compare(FRIENDICA_VERSION, $gitversion)<0) { + if (version_compare(FRIENDICA_VERSION, $gitversion)<0) { $warningtext[] = t('There is a new version of Friendica available for download.'); $showwarning = true; } @@ -856,7 +856,7 @@ function admin_page_site_post(App $a) { $proxy_disabled = ((x($_POST,'proxy_disabled')) ? True : False); $only_tag_search = ((x($_POST,'only_tag_search')) ? True : False); $rino = ((x($_POST,'rino')) ? intval($_POST['rino']) : 0); - $check_new_version_url = ((x($_POST, 'check_new_version_url')) ? notags(trim($_POST['check_new_version_url'])) : 'none'); + $check_new_version_url = ((x($_POST, 'check_new_version_url')) ? notags(trim($_POST['check_new_version_url'])) : 'none'); $worker_queues = ((x($_POST,'worker_queues')) ? intval($_POST['worker_queues']) : 4); $worker_dont_fork = ((x($_POST,'worker_dont_fork')) ? True : False); $worker_fastlane = ((x($_POST,'worker_fastlane')) ? True : False);