From: Christian Weiske Date: Thu, 8 Feb 2018 21:25:28 +0000 (+0100) Subject: No warnings on CLI anymore X-Git-Tag: v1.0.0~4 X-Git-Url: https://git.cweiske.de/playVideoOnDreamboxProxy.git/commitdiff_plain/5cceb8bc5c16343591b2deba59bfb90bedd8f725 No warnings on CLI anymore --- diff --git a/www/functions.php b/www/functions.php index f6b5b1d..2d4e515 100644 --- a/www/functions.php +++ b/www/functions.php @@ -112,7 +112,9 @@ function playVideoOnDreambox($videoUrl, $dreamboxHost) ); $ret = file_get_contents($playUrl, false, $ctx); if ($ret !== false) { - header('HTTP/1.0 200 OK'); + if (php_sapi_name() != 'cli') { + header('HTTP/1.0 200 OK'); + } echo "Video play request sent to dreambox\n"; exit(0); } else {