fix action.php permissions checking when original is small

git-svn-id: http://piwigo.org/svn/trunk@13523 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices 2012-03-09 06:04:55 +00:00
parent 1fe2f42fa8
commit b1c58f59ca

View file

@ -103,10 +103,14 @@ $file='';
switch ($_GET['part']) switch ($_GET['part'])
{ {
case 'e': case 'e':
if ( $user['enabled_high']!='true' ) if ( !$user['enabled_high'] )
{
$deriv = new DerivativeImage(IMG_XXLARGE, new SrcImage($element_info));
if ( !$deriv->same_as_source() )
{ {
do_error(401, 'Access denied e'); do_error(401, 'Access denied e');
} }
}
$file = get_element_path($element_info); $file = get_element_path($element_info);
break; break;
case 'r': case 'r':