mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 11:19:55 +03:00
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:
parent
1fe2f42fa8
commit
b1c58f59ca
1 changed files with 6 additions and 2 deletions
|
@ -103,9 +103,13 @@ $file='';
|
|||
switch ($_GET['part'])
|
||||
{
|
||||
case 'e':
|
||||
if ( $user['enabled_high']!='true' )
|
||||
if ( !$user['enabled_high'] )
|
||||
{
|
||||
do_error(401, 'Access denied e');
|
||||
$deriv = new DerivativeImage(IMG_XXLARGE, new SrcImage($element_info));
|
||||
if ( !$deriv->same_as_source() )
|
||||
{
|
||||
do_error(401, 'Access denied e');
|
||||
}
|
||||
}
|
||||
$file = get_element_path($element_info);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue