Hoşgeldin Misafir

[MOD]Özel mesaj cevaplanırken gelen mesaj altta görünür

MiRaT

13 Kas 2017
2,077 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Kod:
               $reply_subject = preg_replace($orig_word, $replacement_word, $reply_subject);
               $reply_message = preg_replace($orig_word, $replacement_word, $reply_message);
            }

            if ( $board_config['allow_smilies'] && $privmsg_config['privmsgs_enable_smilies'] )
            {
               $reply_message = smilies_pass($reply_message);
            }

            $reply_message = str_replace("\n", '<br />', $reply_message);

            $template->set_filenames(array(
               'pm_review' => 'posting_topic_review.tpl')
            );
            $template->assign_vars(array(
               'L_AUTHOR' => $lang['From'],
               'L_MESSAGE' => $lang['Private_Message'],
               'L_POSTED' => $lang['Sent'],
               'L_POST_SUBJECT' => $lang['Subject'])
            );
            $template->assign_block_vars('postrow', array(
               'ROW_COLOR' => '#' . $theme['td_color1'], 
               'ROW_CLASS' => $theme['td_class1'], 

               'MINI_POST_IMG' => $images['icon_minipost'], 
               'POSTER_NAME' => $to_username, 
               'POST_DATE' => create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['board_timezone']), 
               'POST_SUBJECT' => $reply_subject, 
               'MESSAGE' => $reply_message,

               'L_MINI_POST_ALT' => $lang['Message'])
            );
            $template->assign_var_from_handle('TOPIC_REVIEW_BOX', 'pm_review');
         }
// View PM while replying MOD, By Manipe

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM