mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
code corrections
This commit is contained in:
parent
a1fcff67f2
commit
1f9b52f2bf
3 changed files with 4 additions and 4 deletions
|
@ -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)));
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue