Changeset 13130 for trunk/templates/base/scripts/BxBaseMailBox.php
- Timestamp:
- 11/03/09 01:30:33 (3 years ago)
- File:
-
- 1 edited
-
trunk/templates/base/scripts/BxBaseMailBox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/base/scripts/BxBaseMailBox.php
r13125 r13130 1469 1469 1470 1470 // 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); 1473 1474 1474 1475 $aLanguageKeys = array … … 1477 1478 'cancel' => _t( '_Cancel' ), 1478 1479 'send' => _t( '_Send' ), 1479 'send_copy' => _t( '_Send copy to personal email', $a MemberInfo['NickName'] ),1480 'send_copy' => _t( '_Send copy to personal email', $aRecipientInfo['NickName'] ), 1480 1481 'send_copy_my' => _t( '_Send copy to my personal email' ), 1481 'notify' => _t( '_Notify by e-mail', $a MemberInfo['NickName'] ),1482 'notify' => _t( '_Notify by e-mail', $aRecipientInfo['NickName'] ), 1482 1483 'error_message' => _t( '_please_fill_next_fields_first' ), 1483 1484 ); 1484 1485 1485 if ( !empty($aMemberInfo) )1486 if ( !empty($aMemberInfo) && !empty($aRecipientInfo) ) 1486 1487 { 1487 1488 // ** generate recipient's information ;
Note: See TracChangeset
for help on using the changeset viewer.