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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已解决] 1.5rc2排行榜增加积分判断的BUG的解决方法

[复制链接]
romy2008 发表于 2008-9-13 12:55:15 | 显示全部楼层 |阅读模式
<script type="text/javascript">
                        function checkCredit(id) {
                                var maxCredit = $space[credit];
                                if($(id).value > maxCredit) {
                                        alert("您的当前积分为:"+maxCredit+",请填写一个小于该值的数字");
                                        return false;
                                } else if($(id).value < 1) {
                                        alert("您所填写的积分值不能小于1");
                                        return false;
                                }
                                return true;
                        }
                </script>
在模板space_rank.htm中去掉以上判断JS,没必要加了,下面会加入提示信息中.

然后在
language/lang_showmessage.php 中增加一行:
                'showcredit_errormax' => '填写的数字需要小于您的积分,请返回确定您是否输入正确',

最后在source/cp_credit.php  11行以及50行左右分别修改为以下

11行左右

if(submitcheck('friendsubmit')) {
        $showcredit = intval($_POST['showcredit']);
        if($showcredit > $space['credit'])  {
                showmessage('showcredit_errormax');
        }
        else if($showcredit < 1) {
                showmessage('showcredit_error');
        }


50行左右
        $showcredit = intval($_POST['showcredit']);
        if($showcredit > $space['credit'])  {
                showmessage('showcredit_errormax');
        }
        else if($showcredit < 1) {
                showmessage('showcredit_error');
        }
poplong 发表于 2008-9-13 19:43:35 | 显示全部楼层
支持下!!~~~~~
回复

使用道具 举报

fyhao 发表于 2008-9-13 22:04:39 | 显示全部楼层
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-25 03:55 , Processed in 0.014946 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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