HomeHelpTrac

Ignore:
Timestamp:
11/03/09 01:30:33 (3 years ago)
Author:
Alexander Ermashev
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/templates/base/scripts/BxBaseMailBox.php

    r13125 r13130  
    14691469 
    14701470            // init some needed variables ; 
    1471             $sOutputHtml = null; 
    1472             $aMemberInfo = getProfileInfo($this->aMailBoxSettings['member_id']); 
     1471            $sOutputHtml     = ''; 
     1472            $aMemberInfo     = getProfileInfo($this->aMailBoxSettings['member_id']); 
     1473            $aRecipientInfo  = getProfileInfo($iRecipientID); 
    14731474 
    14741475            $aLanguageKeys = array 
     
    14771478                'cancel'        => _t( '_Cancel' ), 
    14781479                'send'          => _t( '_Send' ), 
    1479                 'send_copy'     => _t( '_Send copy to personal email', $aMemberInfo['NickName'] ), 
     1480                'send_copy'     => _t( '_Send copy to personal email', $aRecipientInfo['NickName'] ), 
    14801481                'send_copy_my'  => _t( '_Send copy to my personal email' ), 
    1481                 'notify'        => _t( '_Notify by e-mail', $aMemberInfo['NickName'] ), 
     1482                'notify'        => _t( '_Notify by e-mail', $aRecipientInfo['NickName'] ), 
    14821483                'error_message' => _t( '_please_fill_next_fields_first' ), 
    14831484            ); 
    14841485 
    1485             if ( !empty($aMemberInfo) ) 
     1486            if ( !empty($aMemberInfo) && !empty($aRecipientInfo) ) 
    14861487            { 
    14871488                // ** generate recipient's information ; 
Note: See TracChangeset for help on using the changeset viewer.