From 14429c84ad49302bb73e5329145db1f67278a76e Mon Sep 17 00:00:00 2001 From: Boris Paing Date: Fri, 12 Mar 2021 21:25:09 +0100 Subject: [PATCH] ENH: change value passed to console.log on video upload --- youtube_add_video_aux.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/youtube_add_video_aux.php b/youtube_add_video_aux.php index 1379f76..44a7024 100644 --- a/youtube_add_video_aux.php +++ b/youtube_add_video_aux.php @@ -17,4 +17,6 @@ if (isset($_POST['youtube_url'])) { exec("/bin/bash -c './ajouter_video_youtube.sh ". $youtube_url ."'", $output); -echo '
'; print_r($output); echo '
'; +$out = implode("\n", $output); + +echo $out;