*********************************************************************************
论坛主页显示点歌台信息 (雪狼修正版)
*********************************************************************************
打开discuz.php
找到,
if(empty($gid))
如果您安装的是独立的点歌台
在前面添加,
//Hacked by PennyChen
if (empty($action))
{
$time_limit = time()-3600*24*7;
$query=$db->query("SELECT * FROM cdb_xn_song WHERE stime>='$time_limit' ORDER BY stime DESC");
$num=0;
while($result = $db->fetch_array($query)) {
$touser=$result['touser'];
$username=$result['username'];
$songurl=$result['songurl'];
$content=$result['content'];
$sgid=$result['sgid'];
$songname=$result['songname'];
$stime = date('Y年m月d日',$result['stime']);
$particular=$result['particular'];
$num++;
// $temp1.="<center><a href=\"club_song.php?fs=st&sgid=$sgid\" onclick=\"javascript:window.open('club_hearsong.php?songid=$sgid','','width=450,height=500,scrollbars=yes')\"><font color=blue>$username</font> 点了一首 <u><font color=green>$songname</font></u> 送给 <font color=RED>$touser</font> 听,并想对".$touser."说: <font color=RED>$content</font></a> ($stime)";
if ($particular == 0) {
$temp1.="<left><a href=\"hearsong.php?songid=$sgid\"><font color=blue>$username</font> 点了一首 <u><font color=green>$songname</font></u> 送给 <font color=RED>$touser</font> 听,并想对".$touser."说: <font color=RED>$content</font></a> ($stime)<br>";
} else {
$temp1.="<left><a href=\"hearsong.php?songid=$sgid\"><font color=blue>$username</font> 点了一首 <u><font color=green>$songname</font></u> 送给 <font color=RED>$touser</font> 听。<font color=#F5AE04><b>**** 内容保密 ****</b></font></a> ($stime)<br>";
}
}
}
if($num==0) {
$temp1.='<center> 目前暂时没有点歌信息!';
}
//Hacked end
打开discuz.htm
找到,
<!--{if !empty($newpmexists)}-->
{template pmprompt}
<!--{/if}-->
在前面添加
<br>
{template index_songs}
打开 actions.lang.php 语言包
添加:
241 => '浏览点歌台',
242 => '正在点歌',
243 => '正在听歌',
244 => '正在编辑点歌',
245 => '正在删除点歌',
这样就可以了!
我这样做!但不管用 |