Türkçe:
Düzeltme: 1
global.php dosyasını açın
Aşağıdaki metni bulun (197. satır)
PHP
$config['horizontal_menu_buttons'] = '1'; // 1 horizontal, 0 vertical
hemen alt satırına bunu ekleyin:
PHP
$config['comment_use_emo'] = 1;
Düzeltme: 2
article.php dosyasını açın
Aşağıdaki metni bulun (375.satır)
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']);
aşağıdaki ile değiştirin
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], $config['comment_use_emo']);
Düzeltme: 3
gallery_image.php dosyasını açın
Aşağıdaki metni bulun (462.satır)
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']);
aşağıdaki ile değiştirin
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], $config['comment_use_emo']);
Düzeltme: 4
downloads.php dosyasını açın
Aşağıdaki metni bulun (886.satır)
PHP
"comment_text" => format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']),
aşağıdaki ile değiştirin
PHP
"comment_text" => format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], $config['comment_use_emo']),
English:
Step: 1
Open global.php
and find (line 197)
PHP
$config['horizontal_menu_buttons'] = '1'; // 1 horizontal, 0 vertical
below insert
PHP
$config['comment_use_emo'] = 1;
Step: 2
Open article.php
and find (line 375)
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']);
replace:
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], $config['comment_use_emo']);
Step: 3
Open gallery_image.php
and find (line 462)
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']);
replace:
PHP
$comment_text = format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], $config['comment_use_emo']);
Step: 4
Open downloads.php
and find (line 886)
PHP
"comment_text" => format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']),
replace:
PHP
"comment_text" => format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], $config['comment_use_emo']),