diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-11-11 15:41:03 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-11-11 15:41:03 +0100 |
commit | 99ee95d46c3e14cb902493df3201a2c1ad9d6dc5 (patch) | |
tree | 3c980cce856e47d01c63e35d4f6bd84ede62981b /lib/private/preview | |
parent | df288605d4b9bf6996830df981a52b0058b95a24 (diff) | |
download | nextcloud-server-99ee95d46c3e14cb902493df3201a2c1ad9d6dc5.tar.gz nextcloud-server-99ee95d46c3e14cb902493df3201a2c1ad9d6dc5.zip |
Added missing escaping
Diffstat (limited to 'lib/private/preview')
-rw-r--r-- | lib/private/preview/movies.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index 7c9f009a9c6..7e012ec44aa 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -60,7 +60,7 @@ if (!\OC_Util::runningOnWindows()) { ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1' . ' -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . - ' ' . $tmpPath . + ' ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; } |