#20807 closed defect (bug) (fixed)

EXIF ISOSpeedRatings can be an array

Reported by: azaozz Owned by: azaozz
Priority: normal Milestone: 3.4
Component: Upload Version:
Severity: normal Keywords: has-patch commit
Cc:

Description

This trips wp_read_image_metadata(). Seems ISOSpeedRatings may include ISO Speed and ISO Latitude and is returned as array on Android devices.

Attachments (5)

20807.patch (1.5 KB) - added by azaozz 12 months ago.
20807-2.patch (2.1 KB) - added by azaozz 12 months ago.
20807-3.patch (2.1 KB) - added by azaozz 12 months ago.
20807.diff (1.4 KB) - added by nacin 12 months ago.
20807.2.diff (1.4 KB) - added by nacin 12 months ago.

Download all attachments as: .zip

Change History (13)

20807.patch was tested on an Android phone (yes, images can be uploaded from there nicely).

comment:2 follow-up: ↓ 3   azaozz12 months ago

Also hide the drag-drop area on mobile devices (this actually should be in plupload, uploader.features.dragdrop should be false for mobile).

Last edited 12 months ago by azaozz (previous) (diff)

comment:3 in reply to: ↑ 2   azaozz12 months ago

(error)

Last edited 12 months ago by azaozz (previous) (diff)

array_shift() instead of $array['ISOSpeedRatings'][0].

Rather than array_shift(), we should use reset().

Looking into this patch now and testing on my Android device.

nacin12 months ago

  • Keywords has-patch commit added

Looks good. 20807.diff doesn't shuffle around code, and makes the array check a bit cleaner.

Tested and confirmed as working for an Android device. Suggesting commit.

Obviously that should be ! hasClass('mobile') -- that was me doing some testing.

nacin12 months ago

  • Owner set to azaozz
  • Resolution set to fixed
  • Status changed from new to closed

In [20978]:

Fix notice in wp_read_image_metadata() when EXIF ISOSpeedRatings is array, props nacin, fixes #20807

Note: See TracTickets for help on using tickets.