Changeset 1919


Ignore:
Timestamp:
01/05/10 14:55:40 (14 years ago)
Author:
amuller
Message:

Ticket #597 - Melhorias nas permissoes do modulo gerenciador de arquivos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/inc/class.vfs_sql.inc.php

    r1904 r1919  
    14781478                                return False; 
    14791479                        } 
     1480                        if (!$this->acl_check (array( 
     1481                                        'string'        => $data['from'], 
     1482                                        'relatives'     => array ($t->mask), 
     1483                                        'operation'     => PHPGW_ACL_DELETE 
     1484                                )) 
     1485                        ) 
     1486                        { 
     1487                                return False; 
     1488                        } 
    14801489 
    14811490                        if ($this->file_exists (array( 
     
    16761685                                ) 
    16771686                        ); 
     1687                        if (!$this->acl_check (array( 
     1688                                'string'        => $p->fake_full_path, 
     1689                                'relatives'     => array ($p->mask), 
     1690                                'operation'     => PHPGW_ACL_DELETE) 
     1691                                ) 
     1692                        ) 
     1693                        { 
     1694                                return False; 
     1695                        } 
     1696 
    16781697                        if (!$this->file_exists (array( 
    16791698                                        'string'        => $data['string'], 
Note: See TracChangeset for help on using the changeset viewer.