From 2b01576aa96e1995025ee4cbde2454b583909c2a Mon Sep 17 00:00:00 2001 From: John Botella Date: Tue, 3 Dec 2019 09:24:11 +0100 Subject: [PATCH] Fix comment --- htdocs/core/lib/images.lib.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/core/lib/images.lib.php b/htdocs/core/lib/images.lib.php index bd0e9b5da79..37627a15bf9 100644 --- a/htdocs/core/lib/images.lib.php +++ b/htdocs/core/lib/images.lib.php @@ -313,10 +313,10 @@ function dolRotateImage($file_path) /** * Add exif orientation correction for image * - * @param $fileSource string - * @param $fileDest string | false | null : on false return gd img on null , on NULL the raw image stream will be outputted directly - * @param $quality int - * @return bool true on success or false on failure or gd img if $fileDest is false. + * @param string $fileSource Full path to source image to rotate + * @param string $fileDest string : Full path to image to rotate | false return gd img | null the raw image stream will be outputted directly + * @param int $quality + * @return bool : true on success or false on failure or gd img if $fileDest is false. */ function correctExifImageOrientation($fileSource, $fileDest, $quality = 95) {