No warnings on CLI anymore
[playVideoOnDreamboxProxy.git] / www / functions.php
index f6b5b1dc91e8f4974ff26be62c226238dd2fa0d1..2d4e515e2e1c5067b499623f2c47dbafa4d96568 100644 (file)
@@ -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 {