[parasy commit] r54 - in trunk/upload: include/javascript plugins/parasy templates/babel

1 view
Skip to first unread message

codesite...@google.com

unread,
Jun 13, 2008, 10:30:39 AM6/13/08
to project...@googlegroups.com
Author: Saiccc
Date: Fri Jun 13 07:30:08 2008
New Revision: 54

Modified:
trunk/upload/include/javascript/common.js
trunk/upload/plugins/parasy/now.inc.php
trunk/upload/templates/babel/now.htm
trunk/upload/templates/babel/now_oimg.htm
trunk/upload/templates/babel/now_ojs.htm
trunk/upload/templates/babel/now_post.htm
trunk/upload/templates/babel/now_stats.htm

Log:
Nowhere IMG Output Bug Fixed

Modified: trunk/upload/include/javascript/common.js
==============================================================================
--- trunk/upload/include/javascript/common.js (original)
+++ trunk/upload/include/javascript/common.js Fri Jun 13 07:30:08 2008
@@ -516,10 +516,22 @@
obj.bgColor = strBgColor;
}

-function textCounter(field, countfield, maxlimit) {
-if (field.value.length > maxlimit)
-field.value = field.value.substring(0, maxlimit);
-else
-countfield.value = maxlimit - field.value.length;
+
+var checkNowType = function(doing, status) {
+ obj1 = getObj(doing);
+ remain = 123 - obj1.value.length;
+ obj2 = getObj(status);
+ if (obj1.value.length <= 122) {
+ obj2.innerHTML = '<span class="tip"><small>����������' + remain + ' ��</small></span>';
+ } else {
+ remain2 = obj1.value.length - 123;
+ obj2.innerHTML = '<small class="fade">����������0 ��</small>';
+ obj1.value = obj1.value.substring(0, 123);
+ }
}

+function openNewWindow(url,id,width,height) {
+ newWin = window.open(BBSDIR + url, id, "width="+ width +",height=" +height);
+ newWin.moveTo(100,100);
+ newWin.focus();
+}
\ No newline at end of file

Modified: trunk/upload/plugins/parasy/now.inc.php
==============================================================================
--- trunk/upload/plugins/parasy/now.inc.php (original)
+++ trunk/upload/plugins/parasy/now.inc.php Fri Jun 13 07:30:08 2008
@@ -7,7 +7,7 @@
exit('Access Denied');
}

-$ver = "V0.5.7 Build 071201";
+$ver = "V0.5.8 Build 080613";
$perpage= NOW_PER_PAGE;
$m_perpage= M_PER_PAGE;
$app_hide_sidebar = array('buddy','fav');
@@ -278,12 +278,11 @@
}


-if ($action == "stats"){
+if ($action == "stats") {
$statscachelife = $statscachelife *120;
$author = make_single_safe($author);
$query = $db->query("SELECT m.username, mf.avatar, m.uid FROM {$tablepre}members m LEFT JOIN {$tablepre}memberfields mf ON mf.uid=m.uid WHERE username='".$author."'");
- $count = mysql_num_rows($query);
- if ($count == 0) {
+ if ($db->num_rows($query) ==0) {
dheader("Location: {$boardurl}now");
} else {
$member = $db->fetch_array($query);
@@ -377,10 +376,12 @@
if (isset($_GET['u'])) {
$user_nick = make_single_safe($_GET['u']);
if ($user_nick == '') {
- $o = "document.writeln('<small style=\"font-size: 11px;\"><a href=\"http://saicn.com/now\" target=\"_blank\">NoNameMag::Nowhere</a></small> ���ʧ�� - û��ָ����Ա�dz�');";
+ $o = "document.writeln('<small style=\"font-size: 11px;\"><a href=\"http://".$_SERVER[HTTP_HOST].$bbsdir."/now\" target=\"_blank\">NoNameMag::Nowhere</a></small> ���ʧ�� - û��ָ����Ա�dz�');";
+ if ($oe == 'utf-8') {
+ $o = iconv($charset, 'utf-8', $o);
+ }
} else {
- $query = $db->query("SELECT count(vid) AS num FROM {$tablepre}plugin_now WHERE author = '{$user_nick}' LIMIT 1");
- $rec = mysql_fetch_array($query);
+ $rec = $db->fetch_first("SELECT count(vid) AS num FROM {$tablepre}plugin_now WHERE author = '{$user_nick}' LIMIT 1");
$count = $rec['num'];
if ($count) {
$query = $db->query("SELECT * FROM {$tablepre}plugin_now WHERE author = '{$user_nick}' ORDER BY dateline DESC LIMIT 1");
@@ -391,21 +392,20 @@
$message['content'] = dhtmlspecialchars($message['content']);
$message['background'] = nwFROM($message['background']);
}
- $o = "document.writeln(\"<span style='color: \" + nnm_now_color_prefix + \";'>\" + nnm_now_prefix + \"</span> " . $message['content'] . " <small style='font-size: 11px; color: \" + nnm_now_color_time + \";'>at " . $message['dateline'] . " via <a href='http://saicn.com/now/" . $messagen[author] . "' target='_blank'>NoNameMag::Nowhere</a></small>\");";
-
+ $o = "document.writeln(\"<span style='color: \" + nnm_now_color_prefix + \";'>\" + nnm_now_prefix + \"</span> " . $message['content'] . " <small style='font-size: 11px; color: \" + nnm_now_color_time + \";'>at " . $message['dateline'] . " via <a href='http://".$_SERVER[HTTP_HOST].$bbsdir."/now/" . $messagen[author] . "' target='_blank'>NoNameMag::Nowhere</a></small>\");";
+ if ($oe == 'utf-8') {
+ $o = iconv($charset, 'utf-8', $o);
+ }
} else {
- $o = "document.writeln('<small style=\"font-size: 11px;\"><a href=\"http://saicn.com/now\" target=\"_blank\">NoNameMag::Nowhere</a></small> ���ʧ�� - ��ǰ��Աû�и��¹�Nowhere');";
+ $o = "document.writeln('<small style=\"font-size: 11px;\"><a href=\"http://".$_SERVER[HTTP_HOST].$bbsdir."/now\" target=\"_blank\">NoNameMag::Nowhere</a></small> ���ʧ�� - ��ǰ��Աû�и��¹�Nowhere');";
+ if ($oe == 'utf-8') {
+ $o = iconv($charset, 'utf-8', $o);
+ }
}
}
-
}

- if ($oe == 'uft-8') {
- echo $o;
- } else {
- echo $o;
- //echo mb_convert_encoding($o, 'gbk', 'utf-8');
- }
+ echo $o;

}

@@ -419,7 +419,7 @@
if (!$content) {
showmessage('��������������', NULL, 'HALTED');
}
- if (mb_strlen($content, 'gbk') > 123){
+ if (mb_strlen($content, 'gbk') > 123) {
showmessage('<span class="text_large"><img src="'.IMGDIR.'/ico_important.gif" class="home" align="absmiddle" />����������ֳ����� 123 ��</span><br /><strong>����������д�����ݣ�����Ը��ƺ󷵻���д</strong><br /><textarea rows="7" cols="10" name="message" id="message" class="quick" style="width: 75%; height: 120px; word-break: break-all">'.$content.'</textarea>' , NULL, 'HALTED',1);
}
$dateline = gmdate("y/m/d H:i", $timestamp + $timeoffset * 3600);
@@ -457,8 +457,7 @@

if (isset($_GET['now_id'])) {
$now_id = intval($_GET['now_id']);
- $query = $db->query("SELECT vid, authorid FROM {$tablepre}plugin_now WHERE vid = '{$now_id}'");
- $row = $db->fetch_array($query);
+ $row = $db->fetch_first("SELECT vid, authorid FROM {$tablepre}plugin_now WHERE vid = '{$now_id}'");
if ($discuz_uid == $row['authorid']) {
$db->query("DELETE FROM {$tablepre}plugin_now WHERE vid = '{$now_id}' LIMIT 1");
require_once DISCUZ_ROOT.'./include/cache.func.php';
@@ -545,7 +544,7 @@
$font = './include/fonts/MSYH.TTF';
if ($style == '0') {
$fn = './include/wbg/wbg2.jpg';
- $image[0] = imagecreatefromjpeg($avatar);
+ $image[0] = nowIMGavatar($avatar);
$image[1] = imagecreatefromjpeg($fn);
$now = imagecopymerge($image[1],$image[0],12,16,0,0,32,32,100);
$fg = imagecolorallocate($image[1], 240, 240, 230);
@@ -559,7 +558,7 @@
imagettftext($image[1], 8, 0, 10, 115, $fg, $font, $now_icon);
} else {
$fn = './include/wbg/wbg_bubble.gif';
- $image[0] = imagecreatefromjpeg($avatar);
+ $image[0] = nowIMGavatar($avatar);
$image[1] = imagecreatefromgif($fn);
$now = imagecopymerge($image[1],$image[0],12,16,0,0,32,32,100);
$fs = 10;
@@ -571,5 +570,18 @@
//imagepng($image[1]);
ImagePNG($image[1],'./images/nowimg/'.$user_nick.'.png');
ImageDestroy($image[1]);
+}
+
+function nowIMGavatar($avatar) {
+ $avatarext = strtolower(fileext($avatar));
+ if ($avatarext =='jpg'){
+ $img_creat_mode = imagecreatefromjpeg($avatar);
+ } elseif ($avatarext =='gif') {
+ $img_creat_mode = imagecreatefromgif($avatar);
+ } elseif ($avatarext =='png') {
+ $img_creat_mode = imagecreatefrompng($avatar);
+ }
+
+ return $img_creat_mode;
}
?>

Modified: trunk/upload/templates/babel/now.htm
==============================================================================
--- trunk/upload/templates/babel/now.htm (original)
+++ trunk/upload/templates/babel/now.htm Fri Jun 13 07:30:08 2008
@@ -1,8 +1,7 @@
{subtemplate header}
<!--[if IE]>
-<style>div#message-container {
-background: transparent url(/bbs/images/now/bg-form-bubble.gif) no-repeat ;
-padding-left: 0;width: 400px;}
+<style>
+div#message-container { background: transparent url(/bbs/images/now/bg-form-bubble.gif) no-repeat ;padding-left: 0;width: 400px; }
div#message-container textarea#content {width:370px;}
</style>
<![endif]-->
@@ -109,13 +108,13 @@
<!--{/if}-->
<!--{if $user_nick}-->
<div id="user_info">
-<img src="$bbsdir/$user[avatar]" align="left" style="margin-right: 10px;" width="32" height="32" class="portrait" />
+<img src="$bbsdir/$user[avatar]" align="left" style="margin-right: 10px;" width="32" height="32" class="portrait" />
<span class="tip_i">all about</span>
<h1 class="ititle" style="margin-bottom: 5px; display: block;"><a href="$bbsdir/uid/$uid">$user_nick</a></h1>
<hr class="board" />
-<a href="$bbsdir/now/$user_nick_en/stats"><img src="{IMGDIR}/chart_bar_add.png" alt="stats" align="absmiddle" /> ״̬ͳ��</a><!--{if $user_nick==$discuz_userss}--> | <a href="$bbsdir/oimg/now" target="_blank"><img src="{IMGDIR}/cog.gif" alt="setting" align="absmiddle" /> ͼƬ����</a><!--{/if}-->
+<a href="$bbsdir/now/$user_nick_en/stats"><img src="{IMGDIR}/chart_bar_add.png" alt="stats" align="absmiddle" /> ״̬ͳ��</a><!--{if $user_nick==$discuz_userss}--> | <a href="#;setImg" onclick="javascript:openNewWindow('/oimg/now/','winOIMGNow',700,660)"><img src="{IMGDIR}/cog.gif" alt="setting" align="absmiddle" /> ͼƬ����</a><!--{/if}-->
<hr class="board" />
-<small>You can Post From��</small><br /><span class="tip_i"><a href="$bbsdir/opost/now" target="_blank"><img src="$bbsdir/images/now/world_edit.png" alt="web" align="absmiddle" /> | <img src="$bbsdir/images/now/phone.png" alt="mobile" align="absmiddle" /> | <img src="$bbsdir/images/now/im.png" alt="IM" align="absmiddle" /></a></span>
+<small>You could update via��</small><br /><span class="tip_i"><a href="#;opost" onclick="javascript:openNewWindow('/opost/now/','winOPOSTNow',700,550)"><img src="$bbsdir/images/now/world_edit.png" alt="web" align="absmiddle" /> | <img src="$bbsdir/images/now/phone.png" alt="mobile" align="absmiddle" /> | <img src="$bbsdir/images/now/im.png" alt="IM" align="absmiddle" /></a></span>
<hr class="board" />
</div>
<!--{if $count == 0 && $action !=friends }-->
@@ -172,7 +171,7 @@
<!--{if $action == index || $count != 0}-->
<hr class="board" />
<!--{if $action == index}--><img src="{IMGDIR}/pico_feed.gif" align="absmiddle" /> <a href="$bbsdir/feed/now">RSS</a>&nbsp; <!--{elseif $action == friends}--><img src="{IMGDIR}/pico_feed.gif" align="absmiddle" /> <a href="#;">RSS / $user_nick ������������״̬</a>&nbsp; <!--{else}--><img src="{IMGDIR}/pico_feed.gif" align="absmiddle" /> <a href="#;">RSS / $user_nick ������״̬</a>&nbsp; <!--{/if}-->
-<!--{if $discuz_uid && $user_nick==$discuz_userss && $action !=friends }--><img src="$bbsdir/images/now/html.png" align="absmiddle" /> <a href="$bbsdir/ojs/now/" target="_blank">JavaScript ��������վ</a>&nbsp;<img src="$bbsdir/images/now/picture.png" align="absmiddle" /> <a href="$bbsdir/oimg/now/" target="_blank">ͼƬ��������վ</a><!--{/if}-->
+<!--{if $discuz_uid && $user_nick==$discuz_userss && $action !=friends }--><img src="$bbsdir/images/now/html.png" align="absmiddle" /> <a href="#;oJS" onclick="javascript:openNewWindow('/ojs/now/','winOJSNow',650,550)"> JavaScript ��������վ</a>&nbsp;<img src="$bbsdir/images/now/picture.png" align="absmiddle" /> <a href="#;oImg" onclick="javascript:openNewWindow('/oimg/now/','winOIMGNow',700,660)">ͼƬ��������վ</a><!--{/if}-->
<!--{/if}-->
{subtemplate about_nowhere}
{subtemplate footer}

Modified: trunk/upload/templates/babel/now_oimg.htm
==============================================================================
--- trunk/upload/templates/babel/now_oimg.htm (original)
+++ trunk/upload/templates/babel/now_oimg.htm Fri Jun 13 07:30:08 2008
@@ -23,7 +23,7 @@
<br /><br />
<strong>ʹ�ü���</strong>
<hr class="board" />
-<blockquote style="white-space: pre; line-height: 16px; padding: 5px 0px 10px 10px; margin: 0px;">
+<blockquote style="white-space: pre; line-height: 10px; padding: 5px 0px 10px 10px; margin: 0px;">
<strong>������̳</strong> �����ʹ��ubb���뽫ͼƬ�����Լ���ǩ���ڡ�<br />
<strong>���಩��</strong> �����ʹ��html���뽫ͼƬ�����Լ�Blog��ҳ�ĺ�������<br />
<strong>������ͼ</strong> �����ʹ�õ����ѹ����뷨������Խ���Ӧ����(��֧��html��è����̳)�����Զ�������ڲ�������Ӧ�Ŀ�ݼ�<br />
@@ -37,7 +37,7 @@

<h1>HTML <span class="tip_i">������֧��HTML�������̳/��վ/����</span></h1>
<div class="code">
-&lt;a href="http://$_SERVER[HTTP_HOST]$bbsdir/now/$discuz_userss_encode" target="_blank"&gt;&lt;img src="http://$_SERVER[HTTP_HOST]$bbsdir/img/now/$discuz_userss_encode" border="0" /&gt;&lt;/a&gt;
+&lt;a href="http://$_SERVER[HTTP_HOST]$bbsdir/now/$discuz_userss_encode" target="_blank"&gt;<br />&lt;img src="http://$_SERVER[HTTP_HOST]$bbsdir/img/now/$discuz_userss_encode" border="0" /&gt;&lt;/a&gt;
</div>
</div>
</div>

Modified: trunk/upload/templates/babel/now_ojs.htm
==============================================================================
--- trunk/upload/templates/babel/now_ojs.htm (original)
+++ trunk/upload/templates/babel/now_ojs.htm Fri Jun 13 07:30:08 2008
@@ -14,22 +14,32 @@
�����ʹ��������ɵ���Щ JavaScript ����Ƭ�������Լ�����վ�ϣ�չʾ���� <a href="$bbsdir/now/$discuz_userss_encode">������־::Nowhere</a> �е�����״̬��</strong><br /><br />
�������
<hr class="board" />
-<blockquote style="white-space: pre; line-height: 16px; padding: 5px 0px 10px 10px; margin: 0px;">
+<blockquote style="white-space: pre;line-height: 10px; padding: 5px 0px 10px 10px; margin: 0px;">
<strong>nnm_now_prefix</strong> ǰ׺���֣����硰��ǰ�����С�����Currently����<br />
<strong>nnm_now_color_prefix</strong> ǰ׺������ɫ����ʹ�� CSS ��ɫ��<br />
<strong>nnm_now_color_time</strong> ʱ�����ɫ����ʹ�� CSS ��ɫ��<br />
</blockquote>
����Ƭ��
<hr class="board" />
-<h1>GBK | UTF-8 <span class="tip_i">������ʹ�� UTF-8 | GBK | GB2312 | GB18030 �������վ</span></h1>
-<div class="code">&lt;script type="text/javascript"&gt;<br />
+<h1>UTF-8 <span class="tip_i">������ʹ�� UTF-8</span></h1>
+<div class="code" style="font-size:10px;line-height: 10px; ">&lt;script type="text/javascript"&gt;<br />
nnm_now_prefix = "���ڽ�����:";<br />
nnm_now_color_prefix = "#999";<br />
nnm_now_color_time = "#999";<br />
&lt;/script&gt;<br />
&lt;script type="text/javascript" src="http://$_SERVER[HTTP_HOST]$bbsdir/js/now/$discuz_userss_encode"&gt; &lt;/script&gt;</div>
+
+<h1>GBK<span class="tip_i">������ʹ�� GBK | GB2312 | GB18030 �������վ</span></h1>
+<div class="code" style="font-size:10px;line-height: 10px; ">&lt;script type="text/javascript"&gt;<br />
+nnm_now_prefix = "���ڽ�����:";<br />
+nnm_now_color_prefix = "#999";<br />
+nnm_now_color_time = "#999";<br />
+&lt;/script&gt;<br />
+&lt;script type="text/javascript" src="http://$_SERVER[HTTP_HOST]$bbsdir/js/now/$discuz_userss_encode/gbk"&gt; &lt;/script&gt;</div>
</div>
</div>
+
+

{eval updatesession();}
</body>

Modified: trunk/upload/templates/babel/now_post.htm
==============================================================================
--- trunk/upload/templates/babel/now_post.htm (original)
+++ trunk/upload/templates/babel/now_post.htm Fri Jun 13 07:30:08 2008
@@ -24,7 +24,7 @@
<img src="$bbsdir/images/now/im.png" align="absmiddle" /> <strong>IM ����</strong>
<hr class="board" />
NowhereĿǰ֧��ʹ��QQ, MSN���и���<br />
-<strong>QQ</strong> <a href="tencent://AddPortal/?Menu=Yes&PanelID=20101">�������</a>���ɽ�Nowhere��������QQ<br /><br />
+<strong>QQ</strong> <a href="tencent://AddPortal/?Menu=Yes&PanelID=20101">�������</a>���ɽ�Nowhere��������QQ���<br /><br />
<strong>MSN</strong> Ҫ��MSN�ϸ���Nowhere������ҪMSN Shell(<a href="http://download.msnshell.com/Install.exe" target="_blank">�������</a>)����ϡ� <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;�����ֱ�ӵ�������ͼ�����Nowhere<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script src='http://shelltab.msnshell.com/abbtab/msntab.js'></script><a href='#' onClick='msntab(1253);' style='cursor:hand'><img src='http://shelltab.msnshell.com/abbtab/msntab.gif' border=0></a>
<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;���ʹ��MSN Shell��ϵͳ�Ὣ���Զ�����MSN Shell��ǩ����ҳ�����<strong>�ҵı�ǩ</strong> -> <strong>�Խ���ǩ</strong> ��������������д��ǩ��Ϣ
<blockquote style="white-space: pre; line-height: 16px; padding: 5px 0px 10px 10px; margin: 0px;">

Modified: trunk/upload/templates/babel/now_stats.htm
==============================================================================
--- trunk/upload/templates/babel/now_stats.htm (original)
+++ trunk/upload/templates/babel/now_stats.htm Fri Jun 13 07:30:08 2008
@@ -1,19 +1,20 @@
{subtemplate header}
-<div class="nav"><img src="{IMGDIR}/map.png" align="absmiddle" alt="You are here" class="map" /><a href="$bbsdir/index.php">$bbname</a> &raquo; Nowhere</div>
-</div>
<!--{eval $discuz_userss_encode = rawurlencode($discuz_userss);}-->
-<!--{eval $author_encode = rawurlencode($author);}-->
+<!--{eval $author_encode = rawurlencode($member['username']);}-->
+
+<div class="nav"><img src="{IMGDIR}/map.png" align="absmiddle" alt="You are here" class="map" /><a href="$bbsdir/index.php">$bbname</a> &raquo; <!--{if $member['username']}--><a href="$bbsdir/uid/$member['uid']">$member['username']</a> &raquo;<!--{/if}--> <a href="$bbsdir/now/$author_encode">Nowhere</a> &raquo; ״̬ͳ��</div>
+</div>
<div class="maintable" align="left" style="$hack_height">
<div style="float: right; padding: 3px 10px 3px 10px; font-size: 10px; background-color: #F0F0F0; -moz-border-radius: 5px; color: #999;">
-<!--{if $author}--><a href="$bbsdir/now/$author_encode">$author</a> | <a href="$bbsdir/now/$author_encode/friends">With Friends</a> | <!--{else}--><!--{if $discuz_uid}--><a href="$bbsdir/now/$discuz_userss_encode">$discuz_userss</a> | <a href="$bbsdir/now/$discuz_userss_encode/friends">With Friends</a> | <!--{/if}--><!--{/if}-->
+<!--{if $member['username']}--><a href="$bbsdir/now/$author_encode">$member['username']</a> | <a href="$bbsdir/now/$author_encode/friends">With Friends</a> | <!--{else}--><!--{if $discuz_uid}--><a href="$bbsdir/now/$discuz_userss_encode">$discuz_userss</a> | <a href="$bbsdir/now/$discuz_userss_encode/friends">With Friends</a> | <!--{/if}--><!--{/if}-->
<a href="$bbsdir/now">Everyone</a></div><img src="{IMGDIR}/rainbow.png" align="absmiddle" /> $title
<hr class="board" />
-<div style="min-width: 170px; max-width: 180px; padding: 5px 0px 5px 0px; background-color: #FFF; float: right;">
+<div id="user_info">
<img src="$bbsdir/$member[avatar]" align="left" style="margin-right: 10px;" width="32" height="32" class="portrait" />
<span class="tip_i">all about</span>
-<h1 class="ititle" style="margin-bottom: 5px; display: block;"><a href="$bbsdir/u/$author_encode">$author</a></h1>
+<h1 class="ititle" style="margin-bottom: 5px; display: block;"><a href="$bbsdir/uid/$member['uid']">$member['username']</a></h1>
<hr class="board" />
-<small>You can Post From��</small><br /><span class="tip_i"><a href="$bbsdir/opost/now" target="_blank"><img src="$bbsdir/images/now/world_edit.png" alt="web" align="absmiddle" /> | <img src="$bbsdir/images/now/phone.png" alt="mobile" align="absmiddle" /> | <img src="$bbsdir/images/now/im.png" alt="IM" align="absmiddle" /></a></span>
+<small>You could update via��</small><br /><span class="tip_i"><a href="#;opost" onclick="javascript:openNewWindow('/opost/now/','winOPOSTNow',700,550)"><img src="$bbsdir/images/now/world_edit.png" alt="web" align="absmiddle" /> | <img src="$bbsdir/images/now/phone.png" alt="mobile" align="absmiddle" /> | <img src="$bbsdir/images/now/im.png" alt="IM" align="absmiddle" /></a></span>
<hr class="board" />
</div>
<div style="width: 75.8%; min-width: 200px; max-width: 800px;">
@@ -26,7 +27,7 @@
<td class="section_even">$stats[total] ��</td>
</tr>
<tr>
- <td width="150" align="right" class="section_even">���һ�ܷ���</td>
+ <td width="150" align="right" class="section_odd">���һ�ܷ���</td>
<td class="section_odd">$stats[weekly] ��</td>
</tr>
<tr>
@@ -62,9 +63,10 @@
// ]]>
</script>
</td>
-</tr>
-<tr><td colspan="2" align="left" class="section_odd"><div class="notify"><img src="{IMGDIR}/database_lightning.png" align="absmiddle" /> {lang stats_update}
-</div></td></tr></table>
+</tr></table>
+</div>
+<hr class="board" />
+<div class="notify"><img src="{IMGDIR}/database_lightning.png" align="absmiddle" /> {lang stats_update}
</div>
{subtemplate about_nowhere}
{subtemplate footer}

Reply all
Reply to author
Forward
0 new messages