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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件] [HACK]仿4.0各处广告管理[For D2.5 All Version]/更新BUG.增加贴间广告/ By Xesuman

[复制链接]
 楼主| Magic.factory 发表于 2005-11-19 08:33:50 | 显示全部楼层
  1. <?php

  2. /*
  3. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  4. :: [DISCUZ!]  Crossday Discuz! Board                                    ::
  5. :: (c) 2001-2005 Comsenz Technology Ltd (www.discuz.com)                ::
  6. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  7. :: Author:  Crossday (tech@discuz.com) Cnteacher (cnteacher@discuz.com) ::
  8. :: Version: 2.5F   2004/10/01 05:15                                     ::
  9. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  10. */
  11. //fix:  BY pk0909
  12. /*
  13. 1 子论坛的子论坛问题
  14. 2 板块简介和名字长度问题
  15. */

  16. if(!defined('IN_ADMINCP')) {
  17.         exit('Access Denied');
  18. }

  19. cpheader();

  20. if($action == 'forumadd') {

  21.         if((!submitcheck('catsubmit') && !submitcheck('forumsubmit'))) {
  22.                 $groupselect = $forumselect = "<select name="fup">\n<option value="0" selected="selected"> - $lang[none] - </option>\n";
  23.                 $query = $db->query("SELECT fid, name, type FROM $table_forums WHERE type<>'sub' ORDER BY displayorder");
  24.                 while($fup = $db->fetch_array($query)) {
  25.                         if($fup['type'] == 'group') {
  26.                                 $groupselect .= "<option value="$fup[fid]">$fup[name]</option>\n";
  27.                         } else {
  28.                                 $forumselect .= "<option value="$fup[fid]">$fup[name]</option>\n";
  29.                         }
  30.                 }
  31.                 $groupselect .= '</select>';
  32.                 $forumselect .= '</select>';
  33.                 include CP_TPL.'forums_add.php';

  34.         } elseif(submitcheck('catsubmit')) {
  35.                 if (strlen($newcat) > 255) cpmsg('forums_forum_name_toolong');
  36.                 $db->query("INSERT INTO $table_forums (type, name, status)
  37.                         VALUES ('group', '$newcat', '1')");

  38.                 updatecache('forums');
  39.                 cpmsg('forums_new_cat_succeed', 'admincp.php?action=forumsedit');
  40.         } elseif(submitcheck('forumsubmit')) {
  41.                 if (strlen($newforum) > 255) cpmsg('forums_forum_name_toolong');
  42.                 $query = $db->query("SELECT type FROM $table_forums WHERE fid='$fup'");
  43.                 $type = $db->result($query, 0) == "forum" ? "sub" : "forum";
  44.                 $db->query("INSERT INTO $table_forums (fup, type, name, status, allowsmilies, allowbbcode, allowimgcode)
  45.                         VALUES ('$fup', '$type', '$newforum', '1', '1', '1', '1')");

  46.                 updatecache('forums');
  47.                 cpmsg('forums_new_forum_succeed', 'admincp.php?action=forumsedit');
  48.         }               

  49. } elseif($action == 'forumsedit') {

  50.         if(!submitcheck('editsubmit')) {

  51. ?>
  52. <table cellspacing="0" cellpadding="0" border="0" width="<?=TABLEWIDTH?>" align="center">
  53. <tr><td bgcolor="<?=BORDERCOLOR?>">

  54. <table border="0" cellspacing="<?=BORDERWIDTH?>" cellpadding="<?=TABLESPACE?>" width="100%">
  55. <tr class="header"><td><?=$lang['forums_edit']?></td></tr>
  56. <tr><td bgcolor="<?=ALTBG1?>"><br>
  57. <form method="post" action="admincp.php?action=forumsedit">
  58. <input type="hidden" name="formhash" value="<?=FORMHASH?>">
  59. <?

  60.                 $modsorig = $comma = '';
  61.                 $query = $db->query("SELECT fid, type, status, name, fup, displayorder, moderator FROM $table_forums ORDER BY displayorder");
  62.                 while($forum = $db->fetch_array($query)) {
  63.                         $forums[] = $forum;
  64.                         $modsorig .= $comma.$forum['moderator'];
  65.                         $comma = ',';
  66.                 }

  67.                 for($i = 0; $i < count($forums); $i++) {
  68.                         if($forums[$i]['type'] == 'group') {
  69.                                 echo '<ul>';
  70.                                 showforum($forums[$i], 1, 'group');
  71.                                 for($j = 0; $j < count($forums); $j++) {
  72.                                         if($forums[$j]['fup'] == $forums[$i]['fid'] && $forums[$j]['type'] == 'forum') {
  73.                                                 echo '<ul>';
  74.                                                 showforum($forums[$j], 2);
  75.                                                 for($k = 0; $k < count($forums); $k++) {
  76.                                                         if($forums[$k]['fup'] == $forums[$j]['fid'] && $forums[$k]['type'] == 'sub') {
  77.                                                                 echo '<ul>';
  78.                                                                 showforum($forums[$k], 3, 'sub');
  79.                                                                 echo '</ul>';
  80.                                                         }
  81.                                                 }
  82.                                                 echo '</ul>';
  83.                                         }
  84.                                 }
  85.                                 echo '</ul>';
  86.                         } elseif(!$forums[$i]['fup'] && $forums[$i]['type'] == 'forum') {
  87.                                 echo '<ul>';
  88.                                 showforum($forums[$i], 1);
  89.                                 for($j = 0; $j < count($forums); $j++) {
  90.                                         if($forums[$j]['fup'] == $forums[$i]['fid'] && $forums[$j]['type'] == 'sub') {
  91.                                                 echo '<ul>';
  92.                                                 showforum($forums[$j], 2, 'sub');
  93.                                                 echo '</ul>';
  94.                                         }
  95.                                 }
  96.                                 echo '</ul>';
  97.                         }
  98.                 }
  99.                 echo "<input type="hidden" name="modsorig" value="$modsorig"><br><center>\n".
  100.                         "<input type="submit" name="editsubmit" value="$lang[submit]"></center><br></td></tr></table></td></tr></table>\n";

  101.         } else {

  102.                 // read from groups
  103.                 $usergroups = array();
  104.                 $query = $db->query("SELECT groupid, type, creditshigher, creditslower FROM $table_usergroups");
  105.                 while($group = $db->fetch_array($query)) {
  106.                         $usergroups[$group['groupid']] = $group;
  107.                 }

  108.                 if(is_array($order)) {
  109.                         $modlist = $comma = '';
  110.                         foreach($order as $fid => $value) {
  111.                                 if($moderator[$fid]) {
  112.                                         $modlist .= $comma.$moderator[$fid];
  113.                                         $comma = ',';
  114.                                 }
  115.                                 $moderator[$fid] = str_replace(',', ', ', str_replace(' ', '', $moderator[$fid]));
  116.                                 $db->query("UPDATE $table_forums SET moderator='$moderator[$fid]', displayorder='$order[$fid]' WHERE fid='$fid'");
  117.                         }
  118.                 }

  119.                 $modsorig = "'".str_replace(',', "','", str_replace(' ', '', $modsorig))."'";
  120.                 $modlist = "'".str_replace(',', "','", str_replace(' ', '', $modlist))."'";

  121.                 $db->query("UPDATE $table_members SET groupid='3' WHERE username IN ($modlist) AND groupid NOT IN (1,2,3,4,5,6,7,8) AND adminid<>'-1' ");
  122.                 $db->query("UPDATE $table_members SET adminid='3' WHERE username IN ($modlist) AND adminid = 0");


  123.                 $query = $db->query("SELECT uid, adminid, groupid, credit FROM $table_members WHERE username IN ($modsorig) AND username NOT IN ($modlist) AND adminid NOT IN (1,2)");

  124.                 while($member = $db->fetch_array($query)) {
  125.                         if($usergroups[$member['groupid']]['type'] == 'special') {
  126.                                 $adminidnew = -1;
  127.                                 $groupidnew = $member['groupid'];
  128.                         } else {
  129.                                 $adminidnew = $member['adminid'] == 3 ? 0 : $member['adminid'];
  130.                                 foreach($usergroups as $group) {
  131.                                         if($group['type'] == 'member' && $member['credit'] >= $group['creditshigher'] && $member['credit'] < $group['creditslower']) {
  132.                                                 $groupidnew = $group['groupid'];
  133.                                                 break;
  134.                                         }
  135.                                 }
  136.                         }
  137.                         $db->query("UPDATE $table_members SET adminid='$adminidnew', groupid='$groupidnew' WHERE uid='$member[uid]'");
  138.                 }

  139.                 updatecache('forums');
  140.                 cpmsg('forums_updated_succeed', 'admincp.php?action=forumsedit');
  141.         }

  142. } elseif($action == 'forumsmerge') {

  143.         if(!submitcheck('mergesubmit') || $source == $target || !$source || !$target) {
  144.                 $forumselect = "<option value="0" selected="selected"> - $lang[none] - </option>\n";
  145.                 $query = $db->query("SELECT fid, name FROM $table_forums WHERE type<>'group' ORDER BY displayorder");
  146.                 while($forum = $db->fetch_array($query)) {
  147.                         $forumselect .= "<option value="$forum[fid]">$forum[name]</option>\n";
  148.                 }
  149.                 include CP_TPL.'forums_merge.php';
  150.         } else {

  151.                 $query = $db->query("SELECT COUNT(*) FROM $table_forums WHERE fup='$source'");
  152.                 if($db->result($query, 0)) {
  153.                         cpmsg('forums_merge_source_sub_notnull');
  154.                 }

  155.                 $db->query("UPDATE $table_threads SET fid='$target' WHERE fid='$source'");
  156.                 $db->query("UPDATE $table_posts SET fid='$target' WHERE fid='$source'");

  157.                 $query = $db->query("SELECT threads, posts FROM $table_forums WHERE fid='$source'");
  158.                 $sourceforum = $db->fetch_array($query);
  159.                 $db->query("UPDATE $table_forums SET threads=threads+$sourceforum[threads], posts=posts+$sourceforum[posts] WHERE fid='$target'");
  160.                 $db->query("DELETE FROM $table_forums WHERE fid='$source'");

  161.                 $query = $db->query("SELECT * FROM $table_access WHERE fid='$source'");
  162.                 while($access = $db->fetch_array($query)) {
  163.                         $db->query("INSERT INTO $table_access (uid, fid, allowview, allowpost, allowreply, allowgetattach)
  164.                                 VALUES ('$access[uid]', '$target', '$access[allowview]', '$access[allowpost]', '$access[allowreply]', '$access[allowgetattach]')", 'SILENT');
  165.                 }
  166.                 $db->query("DELETE FROM $table_access WHERE fid='$source'");

  167.                 updatecache('forums');
  168.                 cpmsg('forums_merge_succeed', 'admincp.php?action=forumsedit');
  169.         }

  170. } elseif($action == 'forumdetail') {

  171.         $perms = array('viewperm', 'postperm', 'replyperm', 'getattachperm');

  172.         if(!submitcheck('detailsubmit')) {

  173.                 $query = $db->query("SELECT * FROM $table_forums WHERE fid='$fid'");
  174.                 $forum = $db->fetch_array($query);
  175.                 $forum['name'] = dhtmlspecialchars($forum['name']);

  176. ?>
  177. <br><form method="post" action="admincp.php?action=forumdetail&fid=<?=$fid?>">
  178. <input type="hidden" name="formhash" value="<?=FORMHASH?>">
  179. <input type="hidden" name="type" value="<?=$forum['type']?>">
  180. <?

  181.                 if($forum['type'] == 'group') {

  182.                         showtype("$lang[forums_cat_detail] - $forum[name]", 'top');
  183.                         showsetting('forums_cat_name', 'namenew', $forum['name'], 'text');
  184.                         showtype('', 'bottom');

  185.                 } else {

  186. ?>
  187. <table cellspacing="0" cellpadding="0" border="0" width="90%" align="center">
  188. <tr><td bgcolor="<?=BORDERCOLOR?>">
  189. <table border="0" cellspacing="<?=BORDERWIDTH?>" cellpadding="<?=TABLESPACE?>" width="100%">
  190. <tr class="header"><td><?=$lang['tips']?></td></tr>
  191. <tr bgcolor="<?=ALTBG1?>"><td>
  192. <br><?=$lang['forums_edit_tips']?>
  193. </td></tr></table></td></tr></table><br><br>
  194. <?

  195.                         $fupselect = "<select name="fupnew">\n<option value="0" ".(!$forum[fup] ? "selected="selected"" : NULL)."> - $lang[none] - </option>\n";
  196.                         $query = $db->query("SELECT fid, name FROM $table_forums WHERE fid<>'$fid' AND type<>'sub' ORDER BY displayorder");
  197.                         while($fup = $db->fetch_array($query)) {
  198.                                 $selected = $fup['fid'] == $forum['fup'] ? "selected="selected"" : NULL;
  199.                                 $fupselect .= "<option value="$fup[fid]" $selected>$fup[name]</option>\n";
  200.                         }
  201.                         $fupselect .= '</select>';
  202.                         $query = $db->query("SELECT groupid, grouptitle FROM $table_usergroups");
  203.                         while($group = $db->fetch_array($query)) {
  204.                                 $groups[] = $group;
  205.                         }

  206.                         $styleselect = "<select name="styleidnew"><option value="0">$lang[default]</option>";
  207.                         $query = $db->query("SELECT styleid, name FROM $table_styles");
  208.                         while($style = $db->fetch_array($query)) {
  209.                                 $styleselect .= "<option value="$style[styleid]" ".
  210.                                         ($style['styleid'] == $forum['styleid'] ? 'selected="selected"' : NULL).
  211.                                         ">$style[name]</option>\n";
  212.                         }
  213.                         $styleselect .= '</select>';

  214.                         foreach($perms as $perm) {
  215.                                 $num = -1;
  216.                                 $$perm = "<table cellspacing="0" cellpadding="0" border="0" width="100%" align="center"><tr>";
  217.                                 foreach($groups as $group) {
  218.                                         $num++;
  219.                                         if($num && $num % 4 == 0) {
  220.                                                 $$perm .= "</tr><tr>";
  221.                                         }
  222.                                         $checked = strstr($forum[$perm], "\t$group[groupid]\t") ? 'checked' : NULL;
  223.                                         $$perm .= "<td><input type="checkbox" name="{$perm}[]" value="$group[groupid]" $checked> $group[grouptitle]</td>\n";
  224.                                 }
  225.                                 $$perm .= '</tr></table>';
  226.                         }

  227.                         $viewaccess = $postaccess = $replyaccess = $getattachaccess = '';

  228.                         $query = $db->query("SELECT m.username, a.* FROM $table_access a LEFT JOIN $table_members m USING (uid) WHERE fid='$fid'");
  229.                         while($access = $db->fetch_array($query)) {
  230.                                 $member = ", <a href="admincp.php?action=access&uid=$access[uid]" target="_blank">$access[username]</a>";
  231.                                 $viewaccess .= $access['allowview'] ? $member : NULL;
  232.                                 $postaccess .= $access['allowpost'] ? $member : NULL;
  233.                                 $replyaccess .= $access['allowreply'] ? $member : NULL;
  234.                                 $getattachaccess .= $access['allowgetattach'] ? $member : NULL;
  235.                         }
  236.                         unset($member);

  237.                         $forum['description'] = str_replace('&lt;', '<', $forum['description']);
  238.                         $forum['description'] = str_replace('&gt;', '>', $forum['description']);

  239.                         showtype("$lang[forums_detail] - $forum[name]", 'top');
  240.                         showsetting('forums_edit_display', 'statusnew', $forum['status'], 'radio');
  241.                         showsetting('forums_edit_up', '', '', $fupselect);
  242.                         showsetting('forums_edit_style', '', '', $styleselect);
  243.                         showsetting('forums_edit_name', 'namenew', $forum['name'], 'text');
  244.                         showsetting('forums_edit_icon', 'iconnew', $forum['icon'], 'text');
  245.                         showsetting('forums_edit_description', 'descriptionnew', $forum['description'], 'textarea');

  246.                         showtype('forums_edit_func');
  247.                         showsetting('forums_edit_html', 'allowhtmlnew', $forum['allowhtml'], 'radio');
  248.                         showsetting('forums_edit_bbcode', 'allowbbcodenew', $forum['allowbbcode'], 'radio');
  249.                         showsetting('forums_edit_imgcode', 'allowimgcodenew', $forum['allowimgcode'], 'radio');
  250.                         showsetting('forums_edit_smilies', 'allowsmiliesnew', $forum['allowsmilies'], 'radio');
  251.                         showsetting('forums_edit_postcredits', 'postcreditsnew', $forum['postcredits'], 'text');
  252.                         showsetting('forums_edit_replycredits', 'replycreditsnew', $forum['replycredits'], 'text');
  253.                        
  254.                         showtype('forums_edit_perm');
  255.                         showsetting('forums_edit_perm_passwd', 'passwordnew', $forum['password'], 'text', '15%');
  256.                         echo '<tr><td colspan="2" height="1" bgcolor="'.ALTBG2.'"></td></tr>';

  257.                         showsetting('forums_edit_perm_view', '', '', str_replace('cdb_groupname', 'viewperm', $viewperm), '15%');
  258.                         echo '<td width="15%" bgcolor="'.ALTBG1.'">'.$lang['forums_edit_access_mask'].'</td><td bgcolor="'.ALTBG2.'">'.substr($viewaccess, 2).'</td></tr>';
  259.                         echo '<tr><td colspan="2" height="1" bgcolor="'.ALTBG2.'"></td></tr>';

  260.                         showsetting('forums_edit_perm_post', '', '', str_replace('cdb_groupname', 'postperm', $postperm), '15%');
  261.                         echo '<td width="15%" bgcolor="'.ALTBG1.'">'.$lang['forums_edit_access_mask'].'</td><td bgcolor="'.ALTBG2.'">'.substr($postaccess, 2).'</td></tr>';
  262.                         echo '<tr><td colspan="2" height="1" bgcolor="'.ALTBG2.'"></td></tr>';

  263.                         showsetting('forums_edit_perm_reply', '', '', str_replace('cdb_groupname', 'replyperm', $replyperm), '15%');
  264.                         echo '<td width="15%" bgcolor="'.ALTBG1.'">'.$lang['forums_edit_access_mask'].'</td><td bgcolor="'.ALTBG2.'">'.substr($replyaccess, 2).'</td></tr>';
  265.                         echo '<tr><td colspan="2" height="1" bgcolor="'.ALTBG2.'"></td></tr>';

  266.                         showsetting('forums_edit_perm_download', '', '', str_replace('cdb_groupname', 'getattachperm', $getattachperm), '15%');
  267.                         echo '<td width="15%" bgcolor="'.ALTBG1.'">'.$lang['forums_edit_access_mask'].'</td><td bgcolor="'.ALTBG2.'">'.substr($getattachaccess, 2).'</td></tr>';

  268.                         showtype('', 'bottom');

  269.                 }

  270.                 echo "<br><br><center><input type="hidden" name="detailsubmit" value="$lang[submit]"><input type="submit" name="detailsubmit" value="$lang[submit]"></form>";

  271.         } else {

  272.                 if($type == 'group') {

  273.                         if($namenew) {
  274.                                 if (strlen($namenew) > 255) cpmsg('forums_forum_name_toolong');
  275.                                 $db->query("UPDATE $table_forums SET name='$namenew' WHERE fid='$fid'");
  276.                                 updatecache('forums');
  277.                                 cpmsg('forums_edit_succeed');
  278.                         } else {
  279.                                 cpmsg('forums_edit_name_invalid');
  280.                         }
  281.                        
  282.                 } else {

  283.                         foreach($perms as $perm) {
  284.                                 if(is_array($$perm)) {
  285.                                         ${$perm.'new'} = "\t";
  286.                                         foreach($$perm as $groupid) {
  287.                                                 ${$perm.'new'} .= "\t$groupid";
  288.                                         }
  289.                                         ${$perm.'new'} .= "\t\t";
  290.                                 }
  291.                         }
  292.                        
  293.                         if (strlen($namenew) > 255) cpmsg('forums_forum_name_toolong');
  294.                         if (strlen($descriptionnew) > 255) cpmsg('forums_forum_description_toolong');
  295.                         $query = $db->query("SELECT type FROM $table_forums WHERE fid='$fupnew'");
  296.                         $fuptype = $db->result($query, 0);
  297.                         $typenew = $fuptype == 'forum' ? 'sub' : 'forum';
  298.                         $db->query("UPDATE $table_forums SET type='$typenew', status='$statusnew', fup='$fupnew', name='$namenew', icon='$iconnew',
  299.                                 description='$descriptionnew', styleid='$styleidnew', allowhtml='$allowhtmlnew', allowbbcode='$allowbbcodenew',
  300.                                 allowimgcode='$allowimgcodenew', allowsmilies='$allowsmiliesnew', postcredits='".intval($postcreditsnew)."',
  301.                                 replycredits='".intval($replycreditsnew)."', password='$passwordnew', viewperm='$viewpermnew',
  302.                                 postperm='$postpermnew', replyperm='$replypermnew', getattachperm='$getattachpermnew' WHERE fid='$fid'");
  303.                         if($type == 'forum' && $typenew == 'sub') {
  304.                                 $db->query("UPDATE $table_forums SET fup='$fupnew' WHERE  fup='$fid' && type='sub'");
  305.                         }

  306.                         updatecache('forums');
  307.                         cpmsg('forums_edit_succeed', 'admincp.php?action=forumsedit');
  308.                 }

  309.         }

  310. } elseif($action == 'forumdelete') {

  311.         $query = $db->query("SELECT COUNT(*) FROM $table_forums WHERE fup='$fid'");
  312.         if($db->result($query, 0)) {
  313.                 cpmsg('forums_delete_sub_notnull');
  314.         }

  315.         if(!$confirmed) {
  316.                 cpmsg('forums_delete_confirm', "admincp.php?action=forumdelete&fid=$fid", 'form');
  317.         } else {
  318.                 require DISCUZ_ROOT.'./include/post.php';

  319.                 $query = $db->query("SELECT pid FROM $table_posts WHERE aid<>'0' AND fid='$fid'");
  320.                 $aid = $comma = '';
  321.                 while($post = $db->fetch_array($query)) {
  322.                         $aid .= "$comma'$post[aid]'";
  323.                         $comma = ',';
  324.                 }

  325.                 if($aid) {
  326.                         $query = $db->query("SELECT filename FROM $table_attachments WHERE aid IN ($aid)");
  327.                         while($attach = $db->fetch_array($query)) {
  328.                                 @unlink(DISCUZ_ROOT."./$attachdir/$attach[filename]");
  329.                         }
  330.                         $db->query("DELETE FROM $table_attachments WHERE aid IN ($aid)");
  331.                 }

  332.                 $db->query("DELETE FROM $table_threads WHERE fid='$fid'");
  333.                 $db->query("DELETE FROM $table_posts WHERE fid='$fid'");
  334.                 $db->query("DELETE FROM $table_forums WHERE fid='$fid'");
  335.                 $db->query("DELETE FROM $table_access WHERE fid='$fid'");

  336.                 updatecache('forums');
  337.                 cpmsg('forums_delete_succeed', 'admincp.php?action=forumsedit');
  338.         }

  339. }

  340. ?>
复制代码
回复

使用道具 举报

 楼主| Magic.factory 发表于 2005-11-19 09:43:23 | 显示全部楼层
为方便大家..特提供反安装代码:

  1. DELETE FROM 'cdb_settings' WHERE 'variable' = 'advert' LIMIT 1;
  2. DELETE FROM 'cdb_settings' WHERE 'variable' = 'adverts' LIMIT 1;
  3. DELETE FROM 'cdb_settings' WHERE 'variable' = 'advertss' LIMIT 1;
  4. DELETE FROM 'cdb_settings' WHERE 'variable' = 'footerbanner' LIMIT 1;
  5. DELETE FROM 'cdb_settings' WHERE 'variable' = 'couplebanner' LIMIT 1;
  6. DELETE FROM 'cdb_settings' WHERE 'variable' = 'floatAdv' LIMIT 1;
复制代码
回复

使用道具 举报

hufanyun 发表于 2005-11-19 10:05:49 | 显示全部楼层
精个
回复

使用道具 举报

 楼主| Magic.factory 发表于 2005-11-19 10:48:55 | 显示全部楼层
!^o^  

  现在期待D3.0 B3的出现。.

希望 3.0也和4.0一样 .有那么全的广告管理功能。...

[ 本帖最后由 Magic.factory 于 2005-11-19 11:47 编辑 ]
回复

使用道具 举报

killua_bo 发表于 2005-11-19 12:50:24 | 显示全部楼层
好的!很不错!!
回复

使用道具 举报

 楼主| Magic.factory 发表于 2005-11-19 19:13:45 | 显示全部楼层
感谢支持...

打水去了。

水太浅...灌不了水了。
回复

使用道具 举报

 楼主| Magic.factory 发表于 2005-11-19 21:35:13 | 显示全部楼层
汗...丢了一个符号..

已经更新笔误 ... 所瑞拉。...同志们

[ 本帖最后由 Magic.factory 于 2005-11-19 21:42 编辑 ]
回复

使用道具 举报

石多 发表于 2005-11-20 16:21:53 | 显示全部楼层
支持Magic.factory  
等待3.0的问世了......
回复

使用道具 举报

 楼主| Magic.factory 发表于 2005-11-21 16:11:01 | 显示全部楼层
嘿嘿.广告插件已经完善..更新了.漂浮/对联广告/由 if 语句控制。

越来越像..D4.0了。.  .....

X一下。
回复

使用道具 举报

it888 发表于 2005-11-22 00:20:59 | 显示全部楼层
up
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-21 22:40 , Processed in 0.028120 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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