Skip to content

Commit aa6128f

Browse files
committed
Enabled orient_image option by default.
1 parent 2bbed69 commit aa6128f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/php/UploadHandler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* jQuery File Upload Plugin PHP Class 6.6.2
3+
* jQuery File Upload Plugin PHP Class 6.6.3
44
* https://github.com/blueimp/jQuery-File-Upload
55
*
66
* Copyright 2010, Sebastian Tschan
@@ -88,8 +88,8 @@ function __construct($options = null, $initialize = true, $error_messages = null
8888
'min_height' => 1,
8989
// Set the following option to false to enable resumable uploads:
9090
'discard_aborted_uploads' => true,
91-
// Set to true to rotate images based on EXIF meta data, if available:
92-
'orient_image' => false,
91+
// Set to false to disable rotating images based on EXIF meta data:
92+
'orient_image' => true,
9393
'image_versions' => array(
9494
// Uncomment the following version to restrict the size of
9595
// uploaded images:

0 commit comments

Comments
 (0)