From 349d7bfa4d8e8c70d350227c299bc6fb20dc6437 Mon Sep 17 00:00:00 2001 From: YaoiFox Date: Wed, 7 May 2014 07:10:23 +0200 Subject: [PATCH] curl --silent now curl --silent now --- ext/cron_uploader/main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/cron_uploader/main.php b/ext/cron_uploader/main.php index 0cdfd9f3..2803fe4c 100644 --- a/ext/cron_uploader/main.php +++ b/ext/cron_uploader/main.php @@ -74,7 +74,7 @@ class CronUploader extends Extension { $failed_dirinfo = $this->scan_dir($failed_dir); $cron_url = make_http(make_link("/cron_upload/" . $this->upload_key)); - $cron_cmd = "curl -f $cron_url"; + $cron_cmd = "curl --silent $cron_url"; $log_path = $this->root_dir . "/uploads.log"; $info_html = "Information @@ -155,7 +155,7 @@ class CronUploader extends Extension { $this->set_dir(); $cron_url = make_http(make_link("/cron_upload/" . $this->upload_key)); - $cron_cmd = "curl -f $cron_url"; + $cron_cmd = "curl --silent $cron_url"; $documentation_link = make_http(make_link("cron_upload")); $sb = new SetupBlock ( "Cron Uploader" );