Ignore:
Timestamp:
03/16/11 15:33:41 (13 years ago)
Author:
alexandrecorreia
Message:

Ticket #597 - Correcao e melhoria no layout das permissoes de usuarios e pastas.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/filemanager/inc/class.uiconfig.inc.php

    r3874 r3875  
    88        \**************************************************************************/ 
    99 
    10 //require_once("load_lang.php"); 
    1110require_once("class.notifications.inc.php"); 
    1211 
     
    8887                $vars = array( 
    8988                                                'lang_Add'                              => lang('Add'), 
     89                                                'lang_back'                             => lang('Back'), 
    9090                                                'lang_directory'                        => lang('directory'), 
    9191                                                'lang_Delete'                           => lang('Delete'), 
     
    9696                                                'lang_setowner'                 => lang('set owner'), 
    9797                                                'lang_setperm'                  => lang('set permission'), 
     98                                                'lang_Search_Folders'   => lang('Search Folders'), 
     99                                                'lang_Search_Users'             => lang('Search Users'),         
    98100                                                'lang_users_and_groups' => lang('Users and groups'), 
     101                                                'lang_permissions_groups_users' => lang('Permissions of groups and users'),      
    99102                                                'path_filemanager'              => $GLOBALS['phpgw_info']['flags']['currentapp'] 
    100103                                        ); 
     
    390393                 $GLOBALS['phpgw_info']['flags']['nofooter']    = True; 
    391394                 $GLOBALS['phpgw_info']['flags']['noappheader'] = True; 
    392  
    393                  $account_info = $GLOBALS['phpgw']->accounts->get_list('both',0,'','',$_GET['name'],'all'); 
     395                 
     396                 $_options = ""; 
     397                  
     398                 $account_info = $GLOBALS['phpgw']->accounts->get_list('both',0,'','',$_POST['name'],'all'); 
    394399 
    395400                 foreach($account_info as $val) 
    396                          echo "<option value='".$val['account_id']."'>".$val['account_lid']."</option>"; 
     401                         $_options .= "<option value='".$val['account_id']."'>".$val['account_lid']."</option>"; 
     402                  
     403                echo $_options; 
    397404        } 
    398405         
Note: See TracChangeset for help on using the changeset viewer.