Arkadaşlar ben forumuma Color Groups modunu kurdum . Fakat bu modda sevmediğim bir durum ortaya çıktı. Tüm Kullanıcı isimleri VSaBaH şeklinde koyu puntolar halinde çıkıyor. Bunu düzeltmenin bir yolu var mı?
Yani yapmak istediğim. Kullanıcı adlarının VSaBaH değilde VSaBaH şeklinde olması... Yardımcı olursanız sevinirim..
İşte Mod
Kod: Tümünü seç
###########################################################
## MOD Ismi: Renk Gruplari - COLOR GROUPS
## MOD Sürümü: v1.2.1
## MOD Yazari: Nivisec <support@nivisec.com> http://www.nivisec.com
## Support: http://www.phpbbhacks.com/forums
## Copyright: ©2002-2003 Nivisec.com
##
## Bagdasma: phpBB - 2.0.4 - 2.0.6, 2.0.13 - 2.0.17
## (muhtemelen 2.0.5 üzerinde her sürümle calisir)
## php - 4.0.1 ve yüksek
##
## MOD Türkce Ceviri: türkphpbb < admin@**********.org > http://www.**********.org
##
## MOD Aciklamasi: Bu Mod geçerli renkleri bir Grup sistemiyle degistirir.
## Grup Ismi, grup rengi ve grup kullanicilari belirleyebilirsiniz.
##
## Yazarin Notlari: Kurulum bittikten sonra, Yönetim Panelinde yeni bir bölüm acilir,
## "Renk Grupları" altina "Grup Admin" alani.
##
##Diger Dosyalar: http://www.nivisec.com/phpbb.php?l=la
##
## Kurulum Seviyesi: Cok Kolay
## Kurulum Süresi : 10-15 Dakika
##
#################################################################
## Lütfen güvenlik acisindan ve MOD un son sürümüne sahip olmak icin, devamli
## http://www.phpbb.com/mods/ adresini takip edin. Bu MODu baska sitelerden indirdiginizde
## cok dikkatli olun, icerisinde phpBB forumunuza zarar verebilecek kodlar bulunabilir.
## http://www.phpbb.com/mods/ da bulunmayan MOD lar phpBB tarafindan desteklenmez.
##############################################################
## Bu MODu kurmadan önce, degisecek tüm dosyalarin yedegini almaniz tavsiye edilir.
##############################################################
##
## ********* GÜNCELLEME *********
## Lütfen son sürüme güncelleme icin goodies/updating/ dosyalarina bakiniz
##
################################################################
#
#-----[ YÜKLE ]------------------------------------------
#
nivisec_install.php <--> root'a
nivisec_schema/*.* yi nivisec_schema <--> tüm klasörü root'a
admin/admin_color_groups.php <--> admin klasörüne
language/lang_turkish/lang_color_groups.php <--> language/lang_turkish klasörüne
includes/functions_color_groups.php <--> includes klasörüne
templates/senin_tema/admin/color_groups_manager.tpl <--> templates/subSilver/admin klasörüne
templates/senin_tema/admin/color_groups_user_list.tpl <--> templates/subSilver/admin klasörüne
#
#-----[ CALISTIR ]------------------------------------------
#
nivisec_install.php
#
Örnek: http://www.siteadi.com/nivisec_install.php
#
#
#-----[ AC ]------------------------------------------
#
includes/constants.php
#
#-----[ BUL ]------------------------------------------
#
define('CATEGORIES_TABLE', $table_prefix.'categories');
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
define('COLOR_GROUPS_TABLE', $table_prefix.'color_groups');
#
#-----[ AC ]------------------------------------------
#
index.php
#
#-----[ BUL ]------------------------------------------
#
//
// End session management
//
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
color_groups_setup_list();
#
#-----[ BUL ]------------------------------------------
#
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : color_group_colorize_name($forum_data[$j]['user_id']);
#
#-----[ AC ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ BUL ]------------------------------------------
#
[ {L_WHOSONLINE_ADMIN} ] [ {L_WHOSONLINE_MOD} ]
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
{COLOR_GROUPS_LIST}
#
#-----[ AC ]------------------------------------------
#
includes/page_header.php
#
#-----[ BUL ]------------------------------------------
#
if (defined('SHOW_ONLINE'))
{
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ BUL ]------------------------------------------
#
$style_color = '';
if ( $row['user_level'] == ADMIN )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
else if ( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
}
if ( $row['user_allow_viewonline'] )
{
$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
$logged_visible_online++;
}
else
{
$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>';
$logged_hidden_online++;
}
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
$user_online_link = color_group_colorize_name($row['user_id']);
if ( $row['user_allow_viewonline'] )
{
$logged_visible_online++;
}
else
{
$logged_hidden_online++;
}
#
#-----[ AC ]------------------------------------------
#
viewonline.php
#
#-----[ BUL ]------------------------------------------
#
$username = $row['username'];
$style_color = '';
if ( $row['user_level'] == ADMIN )
{
$username = '<b style="color:#' . $theme['fontcolor3'] . '">' . $username . '</b>';
}
else if ( $row['user_level'] == MOD )
{
$username = '<b style="color:#' . $theme['fontcolor2'] . '">' . $username . '</b>';
}
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
$username = color_group_colorize_name($user_id, true);
#
#-----[ AC ]------------------------------------------
#
viewtopic.php
#
#-----[ BUL ]------------------------------------------
#
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ BUL ]------------------------------------------
#
'POSTER_NAME' => $poster,
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
'POSTER_NAME' => ($poster_name = color_group_colorize_name($poster_id, true)) ? $poster_name : $poster,
#
#-----[ AC ]------------------------------------------
#
memberlist.php
#
#-----[ BUL ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ BUL ]------------------------------------------
#
'USERNAME' => $username,
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
'USERNAME' => color_group_colorize_name($user_id, true),
#
#-----[ AC ]------------------------------------------
#
privmsg.php
#
#-----[ BUL ]------------------------------------------
#
include($phpbb_root_path . 'includes/functions_post.'.$phpEx);
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ BUL ]------------------------------------------
#
$username_from = $privmsg['username_1'];
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
$username_from = color_group_colorize_name($privmsg['user_id_1'], true);
#
#-----[ BUL ]------------------------------------------
#
$username_to = $privmsg['username_2'];
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
$username_to = color_group_colorize_name($privmsg['user_id_2'], true);
#
#-----[ BUL ]------------------------------------------
#
'FROM' => $msg_username,
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
'FROM' => color_group_colorize_name($msg_userid, true),
#
#-----[ AC ]------------------------------------------
#
viewforum.php
#
#-----[ BUL ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
#
#-----[ BUL ]------------------------------------------
#
$moderators[] = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '">' . $row['username'] . '</a>';
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
$moderators[] = color_group_colorize_name($row['user_id']);
#
#-----[ BUL ]------------------------------------------
#
$topic_author = ( $topic_rowset[$i]['user_id'] != ANONYMOUS ) ? '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $topic_rowset[$i]['user_id']) . '">' : '';
$topic_author .= ( $topic_rowset[$i]['user_id'] != ANONYMOUS ) ? $topic_rowset[$i]['username'] : ( ( $topic_rowset[$i]['post_username'] != '' ) ? $topic_rowset[$i]['post_username'] : $lang['Guest'] );
$topic_author .= ( $topic_rowset[$i]['user_id'] != ANONYMOUS ) ? '</a>' : '';
#
#-----[ BUNUNLA DEGISTIR ]------------------------------------------
#
$topic_author = ($topic_rowset[$i]['user_id'] == ANONYMOUS ) ? (($topic_rowset[$i]['post_username'] != '' ) ? $topic_rowset[$i]['post_username'] : $lang['Guest'] ) : color_group_colorize_name($topic_rowset[$i]['user_id']);
#
#-----[ TÜM DOSYALARI KAPAT/KAYDET ]--------------------------------
#
#Son