Ignore:
Timestamp:
12/24/09 08:37:09 (15 years ago)
Author:
amuller
Message:

Ticket #597 - Melhoria do FM. melhorias na interface, Cartao do usuario

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/filemanager/inc/class.user.inc.php

    r1892 r1893  
    100100 
    101101                function card(){ 
     102                        header('Content-Type: text/html'); 
     103                        $expires = 60*60*24*10; /* 10 days */ 
     104                        header("Cache-Control: maxage=".$expires); 
     105                        header("Pragma: public"); 
     106                        header("Expires: ".gmdate('D, d M Y H:i:s', time()+$expires)); 
    102107                        $account_info = $GLOBALS['phpgw']->accounts->get_list('accounts',0,1,1,base64_decode($this->lid),1,'exact'); 
    103108                        echo $account_info[0]['account_firstname'].' '.$account_info[0]['account_lastname']."<br>"; 
    104                         echo $account_info[0]['account_email']; 
     109                        echo '<a target="_blank" href="../expressoMail1_2/index.php?to=' 
     110                                .$account_info[0]['account_email'].'">'.$account_info[0]['account_email']; 
    105111                        /* 
    106112                        // TODO: PHOTO, ONLY FOR FOOL LDAP 
Note: See TracChangeset for help on using the changeset viewer.