From c2c7859a9ed4cb94b8f5e38091463ffb485b4545 Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sat, 10 May 2014 01:31:16 +0200 Subject: [PATCH] Fixed a little exiftool bug Conflicts: post.php --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index 9603afac..008f8978 100644 --- a/post.php +++ b/post.php @@ -641,7 +641,7 @@ if (isset($_POST['delete'])) { if (!$config['redraw_image'] && $config['use_exiftool']) { if($error = shell_exec_error('exiftool -overwrite_original -ignoreMinorErrors -q -q -all= ' . escapeshellarg($upload))) - error('Could not strip EXIF metadata!', null, $error); + error(_('Could not strip EXIF metadata!'), null, $error); } else { $image->to($post['file']); $dont_copy_file = true;