Ignore:
Timestamp:
11/10/11 14:57:58 (12 years ago)
Author:
niltonneto
Message:

Ticket #2276 - Resincronizando as revisões deste ticket para o Trunk.

File:
1 edited

Legend:

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

    r5141 r5164  
    25132513                } 
    25142514                 
     2515                function get_size_all($owner_id)  
     2516                {  
     2517                        $query = $GLOBALS['phpgw']->db->query ("SELECT Sum(size) FROM phpgw_vfs WHERE owner_id = '".$owner_id."'" . 
     2518                        $this->extra_sql(array ('query_text' => VFS_SQL_SELECT))); 
     2519                        $GLOBALS['phpgw']->db->next_record (); 
     2520 
     2521            $size = $GLOBALS['phpgw']->db->Record[0]; 
     2522 
     2523            return $size;  
     2524                } 
    25152525                /*return the total number of files in path*/ 
    25162526                function count_files($data){ 
Note: See TracChangeset for help on using the changeset viewer.