bug 2164 fixed: disable automatic rotation if we can't read EXIF data

git-svn-id: http://piwigo.org/svn/trunk@9021 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2011-01-31 22:40:58 +00:00
parent 27203f1345
commit aae2301da9

View file

@ -601,6 +601,11 @@ function get_rotation_angle($source_filepath)
return null;
}
if (!function_exists('exif_read_data'))
{
return null;
}
$rotation = null;
$exif = exif_read_data($source_filepath);