PHP-Fusion Türkiye Resmi Destek Sitesi - Yardım - Tema - Modül - Eklenti
21.11.2008 00:16

Başlığı Görüntüle

 Başlığı Yazdır
uye isimleri gorunmuyor
UniFroG
#1 Mesajı Yazdır
Mesaj Tarihi 17.05.2008 00:34
Kullanıcı Avatarı

Kıdemli Üye


Mesaj Sayısı: 1962
Katılım Tarihi: 19.09.07

forumda bırcok modifikasyon yaptım. ve su anda foruma yazan uyelerın nıcklerı gozukmuyor.
ada'da yasamak ve ipek
.
Tek Başına Dev Ordu
.
.
Herşey Sizin İçin
img217.imageshack.us/img217/6834/destek5ga3.gif

profiles.camfrog.com/images/smiley/28.gifUniCoRN

www.unifrog.net
 
www.unifrog.net
SoulSmasher
#2 Mesajı Yazdır
Mesaj Tarihi 17.05.2008 01:13
Kullanıcı Avatarı

Super Yönetici


Mesaj Sayısı: 10962
Katılım Tarihi: 05.01.06

viewthread.php yi yeniden yükleyip baştan modlayın, ne yaptığınızı bilemediğimden yol da göstermem teorik olarak imkansız Smile
Soruları lütfen düzgün bir Türkçe ile sorun, burası anlık çevrimiçi sohbet ortamı değil Smile

Tercümelerimi Ve Kodlamalarımı Çalıp İsimlerini Silenler Size Sesleniyorum:
Gölgem Olmaktan Öteye Gidemeyeceksiniz!!


Wareze Hiçbir Şekilde Destek Yok! Herhangi Bir Sitesinde Warez İçerik Bulunduranlar Ya Silsinler Ya Da Bu Siteden Destek Talep Etmesinler!
 
http://www.yildizkimyacilar.com/
UniFroG
#3 Mesajı Yazdır
Mesaj Tarihi 17.05.2008 18:57
Kullanıcı Avatarı

Kıdemli Üye


Mesaj Sayısı: 1962
Katılım Tarihi: 19.09.07

SoulSmasher yazdı:
viewthread.php yi yeniden yükleyip baştan modlayın, ne yaptığınızı bilemediğimden yol da göstermem teorik olarak imkansız Smile


viewthread.php 'yi yüklesem bakabilir misiniz? bende tam olarak ne yaptığımı bilmiyorum çünkü Sad
ada'da yasamak ve ipek
.
Tek Başına Dev Ordu
.
.
Herşey Sizin İçin
img217.imageshack.us/img217/6834/destek5ga3.gif

profiles.camfrog.com/images/smiley/28.gifUniCoRN

www.unifrog.net
 
www.unifrog.net
UniFroG
#4 Mesajı Yazdır
Mesaj Tarihi 17.05.2008 18:59
Kullanıcı Avatarı

Kıdemli Üye


Mesaj Sayısı: 1962
Katılım Tarihi: 19.09.07

<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
//Rep Mod By BuraK
//downloaded from: www.phpfusion-tr.com
//PHP Fusion Türkiye Resmi Destek Sitesi
require_once "../maincore.php";
require_once INCLUDES."forum_functions_include.php";
$izlemedurum = "0";
require_once BASEDIR."subheader.php";
require_once BASEDIR."side_left.php";
include LOCALE.LOCALESET."forum/main.php";

$posts_per_page = 20;

if (!FUSION_QUERY || !isset($forum_id) || !isNum($forum_id) || !isset($thread_id) || !isNum($thread_id)) fallback("index.php");

$result = dbquery(
"SELECT f.*, f2.forum_name AS forum_cat_name
FROM ".$db_prefix."forums f
LEFT JOIN ".$db_prefix."forums f2 ON f.forum_cat=f2.forum_id
WHERE f.forum_id='".$forum_id."'"
);
if (dbrows($result)) {
$fdata = dbarray($result);
if (!checkgroup($fdata['forum_access']) || !$fdata['forum_cat']) fallback("index.php");
} else {
fallback("index.php");
}
$can_post = checkgroup($fdata['forum_posting']);

$forum_mods = explode(".", $fdata['forum_moderators']);
if (iMEMBER && in_array($userdata['user_id'], $forum_mods)) { define("iMOD", true); } else { define("iMOD", false); }

$result = dbquery("SELECT * FROM ".$db_prefix."threads WHERE thread_id='".$thread_id."' AND forum_id='".$fdata['forum_id']."'");
if (dbrows($result)) { $tdata = dbarray($result); } else { fallback("index.php"); }

$caption = $fdata['forum_cat_name']." | <a href='viewforum.php?forum_id=".$fdata['forum_id']."'>".$fdata['forum_name']."</a>";
$result = dbquery("UPDATE ".$db_prefix."threads SET thread_views=thread_views+1 WHERE thread_id='$thread_id'");

if (iMEMBER && $can_post && !$tdata['thread_locked'] && isset($_POST['postquickreply'])) {
$flood = false;
$message = stripinput(censorwords($_POST['message']));
if ($message != "") {
$result = dbquery("SELECT MAX(post_datestamp) AS last_post FROM ".$db_prefix."posts WHERE post_author='".$userdata['user_id']."'");
if (dbrows($result) > 0) {
$data = dbarray($result);
if ((time() - $data['last_post']) < $settings['flood_interval']) {
$flood = true;
$result = dbquery("INSERT INTO ".$db_prefix."flood_control (flood_ip, flood_timestamp) VALUES ('".USER_IP."', '".time()."')");
if (dbcount("(flood_ip)", "flood_control", "flood_ip='".USER_IP."'") > 4) {
$result = dbquery("UPDATE ".$db_prefix."users SET user_status='1' WHERE user_id='".$userdata['user_id']."'");
}
fallback("viewforum.php?forum_id=$forum_id");
}
}
if (!$flood) {
$sig = ($userdata['user_sig'] ? '1' :'0');
$smileys = isset($_POST['disable_smileys']) ? "0" : "1";
$subject = "RE: ".$tdata['thread_subject'];
$result = dbquery("UPDATE ".$db_prefix."forums SET forum_lastpost='".time()."', forum_lastuser='".$userdata['user_id']."' WHERE forum_id='$forum_id'");
$result = dbquery("UPDATE ".$db_prefix."threads SET thread_lastpost='".time()."', thread_lastuser='".$userdata['user_id']."' WHERE thread_id='$thread_id'");
$result = dbquery("INSERT INTO ".$db_prefix."posts (forum_id, thread_id, post_subject, post_message, post_showsig, post_smileys, post_author, post_datestamp, post_ip, post_edituser, post_edittime) VALUES ('$forum_id', '$thread_id', '$subject', '$message', '$sig', '$smileys', '".$userdata['user_id']."', '".time()."', '".USER_IP."', '0', '0')");
$newpost_id = mysql_insert_id();
$result = dbquery("UPDATE ".$db_prefix."users SET user_posts=user_posts+1 WHERE user_id='".$userdata['user_id']."'");
redirect("postify.php?post=reply&error=0&forum_id=$forum_id&thread_id=$thread_id&post_id=$newpost_id");
}
}
}

opentable($locale['500']);
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='smallalt'><a href='index.php'>".$settings['sitename']."</a> | $caption</td>\n";
if (iMEMBER && $can_post) {
echo "<td align='right'>\n";
if (!$tdata['thread_locked']) {
echo "<a href='post.php?action=reply&forum_id=$forum_id&thread_id=$thread_id'><img src='".THEME."forum/reply.gif' alt='".$locale['565']."' style='border:0px;'></a>\n";
}
echo "<a href='post.php?action=newthread&forum_id=$forum_id'><img src='".THEME."forum/newthread.gif' alt='".$locale['566']."' style='border:0px;'></a></td>\n";
}
echo "</tr>
</table>\n";

$rows = dbcount("(thread_id)", "posts", "thread_id='$thread_id'");

if (isset($pid) && isNum($pid)) {
$reply_count = dbcount("(post_id)", "posts", "thread_id='".$tdata['thread_id']."' AND post_id<'".$pid."'");
if ($reply_count > $posts_per_page) $rowstart = ((ceil($reply_count / $posts_per_page)-1)*$posts_per_page);
}

if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;

if ($rows > $posts_per_page) {
echo "<div align='center' style='margin-top:5px;margin-bottom:5px;'>
".makePageNav($rowstart,$posts_per_page,$rows,3,FUSION_SELF."?forum_id=$forum_id&thread_id=$thread_id&")."
</div>\n";
}

echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";

if ($rows != 0) {
$result = dbquery(
"SELECT p.*, fa.attach_id, fa.attach_name, fa.attach_ext, fa.attach_size, u.*, u2.user_name AS edit_name FROM ".$db_prefix."posts p
LEFT JOIN ".$db_prefix."forum_attachments fa USING(post_id)
LEFT JOIN ".$db_prefix."users u ON p.post_author = u.user_id
LEFT JOIN ".$db_prefix."users u2 ON p.post_edituser = u2.user_id AND post_edituser > '0'
WHERE p.thread_id='$thread_id' ORDER BY post_datestamp LIMIT $rowstart,$posts_per_page"
);
$numrows = dbrows($result);
while ($data = dbarray($result)) {
$message = $data['post_message'];
if ($data['post_showsig']) { $message = $message."\n\n<hr><fieldset><legend><b>".$data['user_name']."</b></legend>".$data['user_sig']; }




if ($data['post_smileys']) { $message = parsesmileys($message); }
$message = parseubb($message);
$message = nl2br($message);
if ($data['post_edittime'] != "0") {
$edituser = "<a href='../profile.php?lookup=".$data['post_edituser']."'>".$data['edit_name']."</a>";
$edittime = showdate("forumdate", $data['post_edittime']);
}
$is_mod = in_array($data['user_id'], $forum_mods) && $data['user_level'] < "102" ? true : false;
echo "<tr>
<td width='145' class='tbl2'>".$locale['501']."</td>
<td class='tbl2'><a name='post_".$data['post_id']."' id='post_".$data['post_id']."'></a>".$data['post_subject']."</td>
</tr>
<tr>
<td valign='top' rowspan='3' width='145' class='tbl1'><b><a href='../profile.php?lookup=".$data['user_id']."'>";
if ($data['user_level'] == "103") {
$userx = "<font color='#F75013'><b>".$data['user_name']."</b></font>";
}else if ($data['user_level'] == "102") {
$userx = "<font color='#008000'><b>".$data['user_name']."</b></font>";
}else if ($data['user_level'] == "101") {
$userx = "<font color='#3333CC'><b>".$data['user_name']."</b></font>";
}if ($data['user_status'] == 1) {
$userx = "<s><font color='#B0B0B0' title='".$locale['fb_012']."'>".$data['user_name']."</s><br>YASAKLI</font>";
}
echo "<br>\n";
if ($data['user_avatar'] != "") {
echo "<img src='".IMAGES."avatars/".$data['user_avatar']."' alt='".$locale['567']."'><br><br>\n";
$height = "360";
} else {
echo "<img src='".IMAGES."avatars/client-greenbg.gif' alt='".$locale['567']."'><br><br>\n";
$height = "540";
}
//By BuraK
$result4 = dbquery("SELECT * FROM ".$db_prefix."reputation WHERE post_id='".$data['post_id']."' AND rep_veren LIKE '".$userdata['user_id']."'");
$data4 = dbrows($result4);
if (!$data4){
$repver = "<a href='".FORUM."reputation.php?forum_id=$forum_id&thread_id=$thread_id&post_id=".$data['post_id']."&rep_rep=".$data['user_id']."&post=".$data['post_id']."'><img src='".IMAGES."reputation/reputation.gif' border='0'></a>";
} else {
$repver = "";
}
$repp = $data['users_rep_puan'];
$balimg = "<img src='".IMAGES."reputation/balance.gif' title='$repp' border='0'>";
$hnegimg = "<img src='".IMAGES."reputation/hneg.gif' title='$repp' border='0'>";
$hposimg = "<img src='".IMAGES."reputation/hpos.gif' title='$repp' border='0'>";
$negimg = "<img src='".IMAGES."reputation/neg.gif' title='$repp' border='0'>";
$offimg = "<img src='".IMAGES."reputation/off.gif' title='$repp' border='0'>";
$posimg = "<img src='".IMAGES."reputation/pos.gif' title='$repp' border='0'>";
$msj = "".$data['user_posts']."";
$baslik = "".number_format(dbcount("(thread_id)", "threads", "thread_author='".$data['user_id']."'"))."";
$shout = "".number_format(dbcount("(shout_id)", "shoutbox", "shout_name='".$data['user_id']."'"))."";
echo "<span class='alt'>Rep Puanı:</span>";
if ($data['users_rep_puan'] == 0 ) { echo "".$offimg.$offimg.$offimg.$offimg.$offimg.""; }
if ($data['users_rep_puan'] > 0 ) { if ($data['users_rep_puan'] < 25 ) { echo "<br>".$negimg.$negimg.$negimg.$negimg.$negimg.$hnegimg.$hnegimg.$hnegimg.$hnegimg.$hnegimg.""; }}
if ($data['users_rep_puan'] > 25 ) { if ($data['users_rep_puan'] < 50 ) { echo "".$negimg.$negimg.$negimg.$negimg.$negimg.""; }}
if ($data['users_rep_puan'] > 50 ) { if ($data['users_rep_puan'] < 100 ) { echo "".$negimg.$negimg.$negimg.""; }}
if ($data['users_rep_puan'] == 100 ) { echo "".$balimg.$balimg.$balimg.$balimg.$balimg.""; }
if ($data['users_rep_puan'] > 100 ) { echo "".$posimg.""; }
if ($data['users_rep_puan'] > 250 ) { echo "".$posimg.""; }
if ($data['users_rep_puan'] > 500 ) { echo "".$posimg.""; }
if ($data['users_rep_puan'] > 1000 ) { echo "".$posimg.""; }
if ($data['users_rep_puan'] > 2000 ) { echo "".$posimg.""; }
if ($data['users_rep_puan'] > 4000 ) { echo "".$hposimg.""; }
if ($data['users_rep_puan'] > 8000 ) { echo "".$hposimg.""; }
if ($data['users_rep_puan'] > 16000 ) { echo "".$hposimg.""; }
if ($data['users_rep_puan'] > 25000 ) { echo "".$hposimg.""; }
if ($data['users_rep_puan'] > 50000 ) { echo "".$hposimg.""; }
echo "<br><span class='alt'>Rep Gücü: </span>".(((5 + $msj) * ($baslik + 1)) + $shout)."<br><span class='alt'>".$locale['502']."</span> ".$data['user_posts']."<br>\n";
if ($data['user_location']) echo "<span class='alt'>".$locale['503']."</span> ".$data['user_location']."<br>\n";
echo "<span class='alt'>".$locale['504']."</span> ".showdate("%d.%m.%y", $data['user_joined'])."<br>";
if (iMEMBER) {
if ($userdata['user_posts'] > 30 || $data['user_posts'] > 30) {
if ($data['post_author'] != $userdata['user_id']) echo "$repver";
} else if ($userdata['user_posts'] < 30 || $data['user_posts'] < 30) { echo ""; }
}

//By BuraK
echo "</td>
<td>
<table cellspacing='0' cellpadding='0' width='100%'>
<tr>
<td class='tbl1'>".$locale['505'].showdate("forumdate", $data['post_datestamp'])."</td>
<td align='right' class='tbl1'>\n";
if (iMEMBER && $can_post) {
if (!$tdata['thread_locked']) {
if ($userdata['user_id'] == $data['post_author'] || iMOD || iSUPERADMIN) {
echo "<a href='post.php?action=edit&forum_id=$forum_id&thread_id=".$data['thread_id']."&post_id=".$data['post_id']."'><img src='".THEME."forum/edit.gif' alt='".$locale['568']."' style='border:0px;'></a>\n";
}
echo "<a href='post.php?action=reply&forum_id=$forum_id&thread_id=".$data['thread_id']."&post_id=".$data['post_id']."&quote=".$data['post_id']."'><img src='".THEME."forum/quote.gif' alt='".$locale['569']."' style='border:0px;'></a>\n";
if (iMOD || iSUPERADMIN && $data['post_ip'] != "0.0.0.0" && file_exists(THEME."forum/ip.gif")) echo "<img src='".THEME."forum/ip.gif' alt='".$locale['570']."' title='".$data['post_ip']."' style='border:0px;'>\n";
} else {
if (iMOD || iSUPERADMIN) {
echo "<a href='post.php?action=edit&forum_id=$forum_id&thread_id=".$data['thread_id']."&post_id=".$data['post_id']."'><img src='".THEME."forum/edit.gif' alt='".$locale['568']."' style='border:0px;'></a>\n";
if ($data['post_ip'] != "0.0.0.0" && file_exists(THEME."forum/ip.gif")) echo "<img src='".THEME."forum/ip.gif' alt='".$locale['570']."' title='".$data['post_ip']."' style='border:0px;'>\n";
}
}
}
echo "</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign='top' height='$height' class='tbl1'>
$message";
if ($data['attach_id']) {
if (in_array($data['attach_ext'], $imagetypes) && @getimagesize(FORUM."attachments/".$data['attach_name'])) {
echo "<hr>\n".$data['user_name'].$locale['506']."<br><br>\n<img src='".FORUM."attachments/".$data['attach_name']."'>";
} else {
echo "<hr>\n".$data['user_name'].$locale['507']."<br>\n<a href='".FUSION_SELF."?forum_id=$forum_id&thread_id=$thread_id&getfile=".$data['post_id']."'>".$data['attach_name']."</a>";
}
}
if ($data['post_edittime'] != "0") {
echo "<hr>\n".$locale['508'].$edituser.$locale['509']."$edittime";
}
echo "</td>
</tr>
<tr>
<td class='tbl1'>\n";
if ($data['user_aim'] && file_exists(THEME."forum/aim.gif")) {
echo "<a href='aim:goim?screenname=".str_replace(" ", "+", $data['user_aim'])."' target='_blank'><img src='".THEME."forum/aim.gif' alt='".$data['user_aim']."' style='border:0px;'></a> ";
}
if ($data['user_icq']) {
echo "<a href='http://web.icq.com/wwp?Uin=".$data['user_icq']."' target='_blank'><img src='".THEME."forum/icq.gif' alt='".$data['user_icq']."' style='border:0px;'></a> ";
}
if ($data['user_msn']) {
echo "<a href='mailto:$data[user_msn]'><img src='".THEME."forum/msn.gif' alt='".$data['user_msn']."' style='border:0px;'></a> ";
}
if ($data['user_yahoo']) {
echo "<a href='http://uk.profiles.yahoo.com/$data[user_yahoo]' target='_blank'><img src='".THEME."forum/yahoo.gif' alt='".$data['user_yahoo']."' style='border:0px;'></a> ";
}
if ($data['user_web']) {
if (!strstr($data['user_web'], "http://")) { $urlprefix = "http://"; } else { $urlprefix = ""; }
echo "<a href='".$urlprefix."".$data['user_web']."' target='_blank'><img src='".THEME."forum/web.gif' alt='".$data['user_web']."' style='border:0px;'></a> ";
}
echo "<a href='".BASEDIR."messages.php?msg_send=".$data['user_id']."'><img src='".THEME."forum/pm.gif' alt='".$locale['571']."' style='border:0px;'></a>
</td>
</tr>\n";
}
}

echo "</table>\n";
if (!iMEMBER) {
$timeoutseconds = 60;
$timestamp = time();
$timeout = $timestamp-$timeoutseconds;
$SID = session_id();
$thread_id = "".$tdata['thread_id']."";
$insert = dbquery("INSERT INTO ".$db_prefix."onlineguests (timestamp,ip,izlenen) VALUES ('$timestamp','$SID','$thread_id')");
if(!($insert)) {
echo "Hata!";
}
$delete = dbquery("DELETE FROM ".$db_prefix."onlineguests WHERE timestamp<$timeout");
if(!($delete)) {
echo "Hata!";
}
$result2 = dbquery("SELECT DISTINCT ip FROM ".$db_prefix."onlineguests WHERE izlenen='$thread_id'");
if(!($result2)) {
echo "Hata!";
}
$users = dbrows($result2);
}

if (count($users) == "") {
$users = "0";
}

if(iMEMBER) {

$timeoutseconds2 = 60;
$timestamp2 = time();
$timeout2 = $timestamp2-$timeoutseconds2;
$thread_id = "".$tdata['thread_id']."";
$update3 = dbquery("UPDATE ".$db_prefix."users SET izledigi_konu='".$thread_id."', timestamp='".$timestamp2."' WHERE user_id='".$userdata['user_id']."'");
if(!($update3)) {
echo "Hata!";
}
$delete3 = dbquery("UPDATE ".$db_prefix."users SET izledigi_konu='', timestamp='0' WHERE user_id='".$userdata['user_id']."' AND timestamp<$timeout2");
if(!($delete3)) {
echo "Hata!";
}
$result3 = dbquery("SELECT DISTINCT user_id FROM ".$db_prefix."users WHERE izledigi_konu='$thread_id'");
if(!($result3)) {
echo "Hata!";
}
$uye = dbarray($result3);

}


tablebreak();
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>";
echo "<tr><td class='tbl2'>Basligi Izleyenler</td></tr>";
echo "<tr><td class='tbl1'>";
$liste = dbquery("SELECT * FROM ".$db_prefix."users WHERE izledigi_konu='".$tdata['thread_id']."' AND timestamp>0");
$uye = "".dbrows($liste)."";
if (dbrows($liste) != "" || $users != 0) {
echo "".$uye." Üye ".$users." Ziyaretçi Basligi Görüntülüyor";
if (dbrows($liste) == "") {
echo ".";
echo "Toplam ".($users + $uye)." Kisi.";
} else {
echo ";<br>";
}
while ($izleyenler = dbarray($liste)){
echo "<a href='".BASEDIR."profile.php?lookup=".$izleyenler['user_id']."'>".$izleyenler['user_name'].",</a>";
}
if (dbrows($liste) != "") {
echo "izliyor...<br>Toplam ".($users + $uye)." Kisi.";
}
} else {
echo "Bu Basligi Izleyen Yok.";
}
echo "</td></tr>";
echo "</table>";

if ($rows > $posts_per_page) {
echo "<div align='center' style='margin-top:5px;'>
".makePageNav($rowstart,$posts_per_page,$rows,3,FUSION_SELF."?forum_id=$forum_id&thread_id=$thread_id&")."
</div>\n";
}

echo "<table cellpadding='0' cellspacing='0' width='100%' style='margin-top:5px;'>\n<tr>\n";
$forum_list = ""; $current_cat = "";
$result = dbquery(
"SELECT f.forum_id, f.forum_name, f2.forum_name AS forum_cat_name
FROM ".$db_prefix."forums f
INNER JOIN ".$db_prefix."forums f2 ON f.forum_cat=f2.forum_id
WHERE ".groupaccess('f.forum_access')." AND f.forum_cat!='0' ORDER BY f2.forum_order ASC, f.forum_order ASC"
);
while ($data = dbarray($result)) {
if ($data['forum_cat_name'] != $current_cat) {
if ($current_cat != "") $forum_list .= "</optgroup>\n";
$current_cat = $data['forum_cat_name'];
$forum_list .= "<optgroup label='".$data['forum_cat_name']."'>\n";
}
$sel = ($data['forum_id'] == $fdata['forum_id'] ? " selected" : "");
$forum_list .= "<option value='".$data['forum_id']."'$sel>".$data['forum_name']."</option>\n";
}
$forum_list .= "</optgroup>\n";
echo "<td align='left' class='tbl'>".$locale['540']."<br>
<select name='jump_id' class='textbox' onChange=\"jumpForum(this.options[this.selectedIndex].value);\">
$forum_list</select></td>\n";

if (iMEMBER && $can_post) {
if (iMOD || iSUPERADMIN) {
echo "<td align='right' class='tbl'>
<form name='modopts' method='post' action='options.php?forum_id=$forum_id&thread_id=$thread_id'>
".$locale['520']."<br>
<select name='step' class='textbox'>
<option value='none'> </option>
<option value='renew'>".$locale['527']."</option>
<option value='delete'>".$locale['521']."</option>\n";
if (!$tdata['thread_locked']) {
echo "<option value='lock'>".$locale['522']."</option>\n";
} else {
echo "<option value='unlock'>".$locale['523']."</option>\n";
}
if (!$tdata['thread_sticky']) {
echo "<option value='sticky'>".$locale['524']."</option>\n";
} else {
echo "<option value='nonsticky'>".$locale['525']."</option>\n";
}
echo "<option value='move'>".$locale['526']."</option>\n";
echo "</select>
<input type='submit' name='go' value='".$locale['528']."' class='button'>
</form>
</td>
</tr>\n";
}
}
echo "</table>\n";
if (iMEMBER) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
if ($settings['thread_notify']) {
echo "<td valign='top' class='tbl'>";
if (dbcount("(thread_id)", "thread_notify", "thread_id='$thread_id' AND notify_user='".$userdata['user_id']."'")) {
$result = dbquery("UPDATE ".$db_prefix."thread_notify SET notify_datestamp='".time()."', notify_status='1' WHERE thread_id='$thread_id' AND notify_user='".$userdata['user_id']."'");
$notify_link = "<a href='postify.php?post=off&forum_id=$forum_id&thread_id=$thread_id'>".$locale['515']."</a>";
} else {
$notify_link = "<a href='postify.php?post=on&forum_id=$forum_id&thread_id=$thread_id'>".$locale['516']."</a>";
}
echo "$notify_link</td>\n";
}
if ($can_post) {
echo "<td align='right' class='tbl'>";
if (!$tdata['thread_locked']) {
echo "<a href='post.php?action=reply&forum_id=$forum_id&thread_id=$thread_id'><img src='".THEME."forum/reply.gif' alt='".$locale['565']."' style='border:0px;'></a>\n";
}
echo "<a href='post.php?action=newthread&forum_id=$forum_id'><img src='".THEME."forum/newthread.gif' alt='".$locale['566']."' style='border:0px;'></a>\n";
echo "</td>\n";
}
echo "</tr>\n</table>\n";
}
closetable();
tablebreak();

if (iMEMBER && $can_post && !$tdata['thread_locked']) {
opentable($locale['512']);
echo "<form name='inputform' method='post' action='".FUSION_SELF."?forum_id=$forum_id&thread_id=$thread_id'>
<table align='center' cellpadding='0' cellspacing='1' class='tbl-border'>
<tr>
<td align='center' class='tbl1'><textarea name='message' cols='80' rows='7' class='textbox'></textarea><br>
<input type='button' value='b' class='button' style='font-weight:bold;width:25px;' onClick=\"addText('message', '', '');\">
<input type='button' value='i' class='button' style='font-style:italic;width:25px;' onClick=\"addText('message', '', '');\">
<input type='button' value='u' class='button' style='text-decoration:underline;width:25px;' onClick=\"addText('message', '', '');\">
<input type='button' value='url' class='button' style='width:30px;' onClick=\"addText('message', '[url]', '[/url]');\">
<input type='button' value='mail' class='button' style='width:35px;' onClick=\"addText('message', '[mail]', '[/mail]');\">
<input type='button' value='img' class='button' style='width:30px;' onClick=\"addText('message', '[img]', '[/img]');\">
<input type='button' value='center' class='button' style='width:45px;' onClick=\"addText('message', '
', '
');\">
<input type='button' value='small' class='button' style='width:40px;' onClick=\"addText('message', '', '');\">
<input type='button' value='code' class='button' style='width:40px;' onClick=\"addText('message', '
Kaynağı İndir  Kod
', '


');\">
<input type='button' value='quote' class='button' style='width:45px;' onClick=\"addText('message', '
', '
');\"></td>
</tr>
<tr>
<td align='center' class='tbl2'>".displaysmileys("message")."<br>
<input type='checkbox' name='disable_smileys' value='1'>".$locale['513']."</td>
</tr>
<tr>
<td class='tbl1' align='center'>
Font Boyutu: <select name='fontsize' class='textbox' style='width:90px; height:15px; ' onChange=\"addText('message', '[size=' + this.options[this.selectedIndex].value + ']', '[/size]');this.selectedIndex=0;\">
<option value=''>Default</option>
<option value='25' style='font-size:25px;'><font-size='25px'>25px</font></option>
<option value='24' style='font-size:24px;'><font-size='24px'>24px</font></option>
<option value='23' style='font-size:23px;'><font-size='23px'>23px</font></option>
<option value='22' style='font-size:22px;'><font-size='22px'>22px</font></option>
<option value='21' style='font-size:21px;'><font-size='21px'>21px</font></option>
<option value='20' style='font-size:20px;'><font-size='20px'>20px</font></option>
<option value='19' style='font-size:19px;'><font-size='19px'>19px</font></option>
<option value='18' style='font-size:18px;'><font-size='18px'>18px</font></option>
<option value='17' style='font-size:17px;'><font-size='17px'>17px</font></option>
<option value='16' style='font-size:16px;'><font-size='16px'>16px</font></option>
<option value='15' style='font-size:15px;'><font-size='15px'>15px</font></option>
<option value='14' style='font-size:14px;'><font-size='14px'>14px</font></option>
<option value='13' style='font-size:13px;'><font-size='13px'>13px</font></option>
<option value='12' style='font-size:12px;'><font-size='12px'>12px</font></option>
</select>
Yazi Karakteri: <select name='fontface' class='textbox' style='width:90px; height:15px; ' onChange=\"addText('message', '[font=' + this.options[this.selectedIndex].value + ']', '[/font]');this.selectedIndex=0;\">
<option value=''>Default</option>
<option value='Arial' style='font-family:Arial;'><font-family='Arial' font-size='12px'>Arial</font></option>
<option value='Arial Black' style='font-family:Arial Black;'><font-family='Arial Black' font-size='12px'>Arial Black</font></option>
<option value='Arial Narrow' style='font-family:Arial Narrow;'><font-family='Arial Narrow' font-size='12px'>Arial Narrow</font></option>
<option value='Book Antiqua' style='font-family:Book Antiqua;'><font-family='Book Antiqua' font-size='12px'>Book Antiqua</font></option>
<option value='Century Gothic' style='font-family:Century Gothic;'><font-family='Century Gothic' font-size='12px'>Century Gothic</font></option>
<option value='Comic Sans MS' style='font-family:Comic Sans MS;'><font-family='Comic Sans MS' font-size='12px'>Comic Sans MS</font></option>
<option value='Courier New' style='font-family:Courier New;'><font-family='Courier New' font-size='12px'>Courier New</font></option>
<option value='Fixedsys' style='font-family:Fixedsys;'><font-family='Fixedsys' font-size='12px'>Fixedsys</font></option>
<option value='Franklin Gothic Medium' style='font-family:Franklin Gothic Medium;' font-size='12px'><font-family='Franklin Gothic Medium'>Franklin Gothic Medium</font></option>
<option value='Garamond' style='font-family:Garamond;'><font-family='Garamond' font-size='12px'>Garamond</font></option>
<option value='Georgia' style='font-family:Georgia;'><font-family='Georgia' font-size='12px'>Georgia</font></option>
<option value='Impact' style='font-family:Impact;'><font-family='Impact' font-size='12px'>Impact</font></option>
<option value='Lucida Console' style='font-family:Lucida Console;'><font-family='Lucida Console' font-size='12px'>Lucida Console</font></option>
<option value='Lucida Sans Unicode' style='font-family:Lucida Sans Unicode;'><font-family='Lucida Sans Unicode' font-size='12px'>Lucida Sans Unicode</font></option>
<option value='Microsoft Sans Serif' style='font-family:Microsoft Sans Serif;'><font-family='Microsoft Sans Serif' font-size='12px'>Microsoft Sans Serif</font></option>
<option value='Palatino Linotype' style='font-family:Palatino Linotype;'><font-family='Palatino Linotype' font-size='12px'>Palatino Linotype</font></option>
<option value='System' style='font-family:System;'><font-family='System' font-size='12px'>System</font></option>
<option value='Tahoma' style='font-family:Tahoma;'><font-family='Tahoma' font-size='12px'>Tahoma</font></option>
<option value='Times New Roman' style='font-family:Times New Roman;'><font-family='Times New Roman' font-size='12px'>Times New Roman</font></option>
<option value='Trebuchet MS' style='font-family:Trebuchet MS;'><font-family='Trebuchet MS' font-size='12px'>Trebuchet MS</font></option>
<option value='Verdana' style='font-family:Verdana;'><font-family='Verdana' font-size='12px'>Verdana</font></option>
</select>
</td>
</tr>
<tr>
<td align='center' class='tbl1'><input type='submit' name='postquickreply' value='".$locale['514']."' class='button'></td>
</tr>
</table>
</form>\n";
closetable();
}

echo "<script type='text/javascript'>
function jumpForum(forumid) {
document.location.href='".FORUM."viewforum.php?forum_id='+forumid;
}
</script>\n";

//require_once BASEDIR."side_right.php";
require_once BASEDIR."footer.php";
?>

ada'da yasamak ve ipek
.
Tek Başına Dev Ordu
.
.
Herşey Sizin İçin
img217.imageshack.us/img217/6834/destek5ga3.gif

profiles.camfrog.com/images/smiley/28.gifUniCoRN

www.unifrog.net
 
www.unifrog.net
DaLGaBaZ
#5 Mesajı Yazdır
Mesaj Tarihi 26.05.2008 12:56
Saygın Üye


Mesaj Sayısı: 511
Katılım Tarihi: 10.05.06

üyr nickleri gözüküyor fakat mesaj içeriği gözükmüyor en son yaptığın modifikasyon hangisi? o kodlarda bi çakışma olabilir. biraz ayırıntıya girersen yardım etmeye çalışırızWink
Bizi Aldatan, Bizden Değildir.(HZ.Muhammed S.A.V)
 
http://www.korkuturk.com
UniFroG
#6 Mesajı Yazdır
Mesaj Tarihi 29.05.2008 23:16
Kullanıcı Avatarı

Kıdemli Üye


Mesaj Sayısı: 1962
Katılım Tarihi: 19.09.07

tam olarak ne yaptıgımı hatırlamadıgım ıcın soulsmasterın tavsıyesını dınleyıp sıteyı bastan kodlarım Smile
ada'da yasamak ve ipek
.
Tek Başına Dev Ordu
.
.
Herşey Sizin İçin
img217.imageshack.us/img217/6834/destek5ga3.gif

profiles.camfrog.com/images/smiley/28.gifUniCoRN

www.unifrog.net
 
www.unifrog.net
Atlanilacak Forum: