Skip to content

Commit 80e3a6b

Browse files
authored
Parameters order was wrong
1 parent 0bd9909 commit 80e3a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/php/UploadHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ protected function handle_image_file($file_path, $file) {
11181118
}
11191119
if (count($failed_versions)) {
11201120
$file->error = $this->get_error_message('image_resize')
1121-
.' ('.implode($failed_versions, ', ').')';
1121+
.' ('.implode( ', ', $failed_versions).')';
11221122
}
11231123
// Free memory:
11241124
$this->destroy_image_object($file_path);

0 commit comments

Comments
 (0)