Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

添加标题颜色

[复制链接]
FJYING 发表于 2004-3-2 14:03:18 | 显示全部楼层 |阅读模式
***********************************************************
                  *                         ※风之影※论坛                  *
                  ***********************************************************
                  *    小小论坛,访问量不是很多!如果阁下有空闲的时间,而空闲 *
                  *的时间又是无可消磨的话,你可以来寒舍坐坐!               *
                  *                                                         *
                  *                                     -----FJYING         *
                  *      FJYING FORUM [http://fjying.9s5.com/bbs]           *
                  ***********************************************************
For Discuz! 2.0

打开文件(./include/newthread.php)
找到
        $subject = dhtmlspecialchars($subject);
下面添加:        
if ($subjectcolor != "0") {
        $subject = "<FONT COLOR=$subjectcolor>$subject</FONT>";
                      }

打开模版(post_newthread.htm)
找到
              <input type="text" name="subject" size="43" value="$subject" tabindex="3">
下面添加
              {template post_subjectcolor}

新建COLOR模版(post_subjectcolor.htm)
COLOR模版内容和格式如下:

<select name="subjectcolor">
<option value="0" selected>标题颜色</option>
<option style="background-color:#00FFFF;color: #00FFFF" value="#00FFFF">#00FFFF</option>
<option style="background-color:#00008B;color: #00008B" value="#00008B">#00008B</option>
...
...
<option style="background-color:#9ACD32;color: #9ACD32" value="#9ACD32">#9ACD32</option>
</select>

评分

1

查看全部评分

aoto 发表于 2004-3-2 14:39:18 | 显示全部楼层
来这里灌水`?
回复

使用道具 举报

小文 发表于 2004-3-2 16:55:03 | 显示全部楼层
有什么作用噶
回复

使用道具 举报

lyzpaul 发表于 2004-3-2 17:16:00 | 显示全部楼层
3Q`这个hack我找了好久了
回复

使用道具 举报

kerryhan 发表于 2004-3-21 20:12:59 | 显示全部楼层
在这里怎样使用权限,也就是说只让某些人有着个权限!
回复

使用道具 举报

aoto 发表于 2004-3-21 21:19:02 | 显示全部楼层
好象是超版才有这权利!
回复

使用道具 举报

夜不收 发表于 2004-3-21 23:58:30 | 显示全部楼层
我装了一个,可以跟一样的操作,版主就可以用了。。。
回复

使用道具 举报

dachy 发表于 2004-3-22 06:56:13 | 显示全部楼层

我更想知道。。

如何让被置顶的主题的标题自动变成指定颜色,
被取消置顶后再回复普通颜色……

很难吗???哈哈,我一时懒得想了。。
回复

使用道具 举报

63898 发表于 2004-3-22 17:59:45 | 显示全部楼层

修改forumdisplay:原文件为

<?php

/*
        [DISCUZ!] forumdisplay.php - list forum threads(topics)
        This is NOT a freeware, use is subject to license terms

        Version: 2.0.0
        Author: Crossday (info@discuz.net)
        Copyright: Crossday Studio (www.crossday.com)
        Last Modified: 2002/12/6 17:00
*/

require "./include/common.php";
require $discuz_root.'./include/forum.php';
require $discuz_root.'./include/attachment.php';

if(!$forum['fid'] || $forum['type'] == 'group') {
        showmessage('forum_nonexistence');
}

$discuz_action = 2;
$navigation = '';

if($forum['type'] == 'forum') {
        $navigation .= "&raquo; $forum[name]";
        $navtitle = " - $forum[name]";
} else {
        $forumup = $_DCACHE['forums'][$forum['fup']]['name'];
        $navigation .= "&raquo; <a href=\"forumdisplay.php?fid=$forum[fup]\">$forumup</a> &raquo; $forum[name]";
        $navtitle = " - $forumup - $forum[name]";
}

if($forum['password'] && $action == 'pwverify') {
        if($pw != $forum['password']) {
                showmessage('forum_passwd_wrong');
        } else {
                setcookie("fidpw$fid", $pw, 0, $cookiepath, $cookiedomain);
                header("Location: {$boardurl}forumdisplay.php?fid=$fid&sid=$sid");
        }
}

if($forum['viewperm'] && !strstr($forum['viewperm'], "\t$groupid\t")) {
        showmessage('forum_nopermission');
}

if(!empty($forum['password']) && $forum['password'] != $HTTP_COOKIE_VARS["fidpw$fid"]) {
        include template('forumdisplay_passwd');
        discuz_exit();
}

$ismoderator = modcheck($discuz_user);
$moderatedby = moddisplay($forum['moderator'], 'forumdisplay');

$subexists = $subthreads = 0;
foreach($_DCACHE['forums'] as $sub) {
        if($sub['type'] == 'sub' && $sub['fup'] == $fid) {
                $subexists = 1;
                break;
        }
}

if($subexists) {
        $subexists = 0;
        $sublist = array();
        $querys = $db->query("SELECT * FROM $table_forums WHERE status='1' AND type='sub' AND fup='$fid' ORDER BY displayorder");
        while($sub = $db->fetch_array($querys)) {
                $subexists = 1;
                $subthreads += $sub['threads'];
                forum($sub);
                $sublist[] = $sub;
        }
}

if(!empty($page)) {
        $start_limit = ($page - 1) * $tpp;
} else {
        $start_limit = 0;
        $page = 1;
}

$forumdisplayadd = $filteradd = '';
if(!empty($filter)) {
        if($filter != 'digest') {
                $forumdisplayadd .= "&filter=$filter";
                $filteradd = "AND lastpost>='".($timestamp - $filter)."'";
        } elseif($filter == 'digest') {
                $forumdisplayadd .= "&filter=digest";
                $filteradd = "AND digest<>'0'";
        }
} else {
        $filter = '';
}

!isset($ascdesc) ? $ascdesc = 'DESC' : $forumdisplayadd .= "&ascdesc=$ascdesc";
$dotadd1 = $dotadd2 = '';
if($dotfolders && $discuz_user) {
        $dotadd1 = "DISTINCT p.author AS dotauthor, ";
        $dotadd2 = "LEFT JOIN $table_posts p ON (t.tid=p.tid AND p.author='$discuz_user')";
}

if($whosonlinestatus) {
        $onlineinfo = explode("\t", $onlinerecord);
        $detailstatus = (!isset($HTTP_COOKIE_VARS['onlinedetail']) && $onlineinfo[0] < 500) || (($HTTP_COOKIE_VARS['onlinedetail'] || $showoldetails == 'yes') && $showoldetails != 'no');

        if($detailstatus) {
                @include language('actions');

                updatesession();
                $onlinenum = $membercount = $guestcount = 0;
                $whosonline = array();
                $query = $db->query("SELECT username, status, lastactivity, action FROM $table_sessions WHERE username<>'' AND fid='$fid'");
                if($db->num_rows($query)) {
                        while($online = $db->fetch_array($query)) {
                                $online['usernameenc'] = rawurlencode($online['username']);
                                if($online['status'] == 'Admin') {
                                        $online['icon'] = 'online_admin.gif';
                                } elseif($online['status'] == 'SuperMod') {
                                        $online['icon'] = 'online_supermod.gif';
                                } elseif($online['status'] == 'Moderator') {
                                        $online['icon'] = 'online_moderator.gif';
                                } else {
                                        $online['icon'] = 'online_member.gif';
                                }
                                $online['action'] = $actioncode[$online['action']];
                                $online['lastactivity'] = gmdate($timeformat, $online['lastactivity'] + ($timeoffset * 3600));
                                $whosonline[] = $online;
                        }
                } else {
                        $whosonlinestatus = 0;
                }
                unset($online);
        } else {
                $whosonlinestatus = 0;
        }
}

if($discuz_user && $newpm) {
        require $discuz_root.'./include/pmprompt.php';
}

if(!empty($filter)) {
        $query = $db->query("SELECT COUNT(*) FROM $table_threads WHERE (topped='3' OR fid='$fid') $filteradd");
        $topicsnum = $db->result($query, 0);
} else {
        $topicsnum = $forum['threads'] - $subthreads;
}

$multipage = multi($topicsnum, $tpp, $page, "forumdisplay.php?fid=$fid$forumdisplayadd");

$threadlist = array();
$query = $db->query("SELECT $dotadd1 t.* FROM $table_threads t $dotadd2 WHERE (t.topped='3' OR t.fid='$fid') $filteradd ORDER BY t.topped DESC, t.lastpost $ascdesc LIMIT $start_limit, $tpp");
while($thread = $db->fetch_array($query)) {
        $thread['icon'] = $thread['icon'] ? "<img src=\"".SMDIR."/$thread[icon]\" align=\"absmiddle\">" : '&nbsp;';
        $thread['authorenc'] = rawurlencode($thread['author']);
        $thread['lastposterenc'] = rawurlencode($thread['lastposter']);
        if ($thread['topped']==3) $thread['subject']="<b><font color=\"Red\">" . $thread['subject'] . "</font></b>";
                else
        if ($thread['topped']==2) $thread['subject']="<b><font color=\"Blue\">" . $thread['subject'] . "</font></b>";
                else
        if ($thread['topped']==1) $thread['subject']="<b><font color=\"Green\">" . $thread['subject'] . "</font></b>";

        $postsnum = $thread['replies'] + 1;
        if($postsnum  > $ppp) {
                $pagelinks = '';
                $topicpages = ceil($postsnum / $ppp);
                for ($i = 1; $i <= $topicpages; $i++) {
                        $pagelinks .= "<a href=\"viewthread.php?tid=$thread[tid]&page=$i\">$i</a> ";
                        if($i == 6) {
                                $i = $topicpages + 1;
                        }
                }
                if($topicpages > 6) {
                        $pagelinks .= " .. <a href=\"viewthread.php?tid=$thread[tid]&page=$topicpages\">$topicpages</a> ";
                }
                $thread['multipage'] = '&nbsp; &nbsp;( <img src="'.IMGDIR.'/multipage.gif" align="absmiddle" boader="0"> '.$pagelinks.')';
        } else {
                $thread['multipage'] = '';
        }

        if($thread['closed']) {
                if(substr($thread['closed'], 0, 5) == 'moved') {
                        $thread['tid'] = substr($thread['closed'], 6);
                        $thread['replies'] = '-';
                        $thread['views'] = '-';
                }
                $thread['folder'] = 'lock_folder.gif';
        } else {
                $thread['folder'] = 'folder.gif';
                if($lastvisit < $thread['lastpost'] && !strstr($HTTP_COOKIE_VARS['oldtopics'], "\t$thread[tid]\t")) {
                        $thread['new'] = 1;
                        $thread['folder'] = 'red_'.$thread['folder'];
                } else {
                        $thread['new'] = 0;
                }
                if($thread['replies'] >= $hottopic) {
                        $thread['folder'] = 'hot_'.$thread['folder'];
                }
                if($dotfolders && $thread['dotauthor'] == $discuz_user && $discuz_user) {
                        $thread['folder'] = 'dot_'.$thread['folder'];
                }
        }

        if($thread['attachment']) {
                $thread['subject'] = attachicon($thread['attachment']).' '.$thread['subject'];
        }

        $thread['dateline'] = gmdate($dateformat, $thread['dateline'] + $timeoffset * 3600);
        $thread['lastpost'] = gmdate("$dateformat $timeformat", $thread['lastpost'] + $timeoffset * 3600);

        $threadlist[] = $thread;

}

$check[$filter] = 'selected="selected"';
$ascdesc == 'ASC' ? $check['asc'] = 'selected="selected"' : $check['desc'] = 'selected="selected"';

$forumselect = forumselect();
if($fastpost && ((!$forum['postperm'] && $allowpost) || ($forum['postperm'] && strstr($forum[postperm], "\t$groupid\t")))) {
        $fastpost = 1;
        $usesigcheck = $signature ? 'checked' : NULL;
} else {
        $fastpost = 0;
}

include template('forumdisplay');

?>
回复

使用道具 举报

dachy 发表于 2004-3-24 02:01:56 | 显示全部楼层

是给我的吗

~~改了哪里咧,我还要比较一下。。。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-1-11 20:55 , Processed in 0.034403 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表