- Автор темы
- Заблокирован
- #1
вот я раскодировал, а вот как правильно подкорректировать?
например тут
тут
помогите доработать пожалуйста
например тут
PHP:
$whmcs = App::self( );
PHP:
$ca = new chchehhjfc( );
помогите доработать пожалуйста
PHP:
define( 'CLIENTAREA', true );
require( 'init.php' );
$whmcs = App::self( );
$emailId = (int)$whmcs->get_req_var( 'id' );
$ca = new chchehhjfc( );
$ca->setPageTitle( Lang::trans( 'clientareaemails' ) );
$ca->addToBreadCrumb( 'index.php', $whmcs->get_lang( 'globalsystemname' ) );
$ca->addToBreadCrumb( 'viewemail.php?id=' . (int)$emailId . '#', Lang::trans( 'clientareaemails' ) );
$ca->initPage( );
$ca->requireLogin( );
$result = select_query( 'tblemails', '', array( 'id' => $emailId, 'userid' => $ca->getUserID( ) ) );
$data = mysql_fetch_array( $result );
$date = $data['date'];
$subject = $data['subject'];
$data['message'];
$message = checkContactPermission( 'emails' );
$date = fromMySQLDate( $date, true, true );
$ca->assign( 'date', dfdidhdbdc::makeSafeForOutput( $date ) );
$ca->assign( 'subject', dfdidhdbdc::makeSafeForOutput( $subject ) );
$ca->assign( 'message', $message );
$ca->setTemplate( 'viewemail' );
$ca->disableHeaderFooterOutput( );
$ca->addOutputHookFunction( 'ClientAreaPageViewEmail' );
$ca->output( );