|
时间:2012年11月7日
修改人:鹏鹏
修改文件:include/js/common.js
涉及功能:在chrome下的论坛登录、回帖、置顶操作等
修改原因:在chrome下的论坛登录不自动跳转,回帖不自动刷新,置顶操作无法使用
修改主要代码:common.js 1170行附近,if(!s) s = $(ajaxframeid).contentWindow.document.firstChild.textContent; 行为新增代码
- showloading('none');
- try {
- if(BROWSER.ie) {
- s = $(ajaxframeid).contentWindow.document.XMLDocument.text;
- } else {
- s = $(ajaxframeid).contentWindow.document.documentElement.firstChild.nodeValue;
- if(!s) s = $(ajaxframeid).contentWindow.document.firstChild.textContent;
- }
- } catch(e) {
- if(AJAX['debug']) {
- var error = mb_cutstr($(ajaxframeid).contentWindow.document.body.innerText.replace(/\r?\n/g, '\\n').replace(/"/g, '\\\"'), 200);
- s = '<root>ajaxerror<script type="text/javascript" reload="1">showDialog(\'Ajax Error: \\n' + error + '\');</script></root>';
- }
- }
复制代码
时间:2012年9月11日
修改人:鹏鹏
修改文件:bbs/config.inc.php
涉及功能:UCenter登录方式
修改原因:采用数据库方式连接UCenter而不是接口方式
修改主要代码:
参考:UCenter挂接应用的方式的说明 http://faq.comsenz.com/viewnews-528
时间:2012年9月9日
修改人:鹏鹏
修改文件:bbs/party.php
涉及功能:活动报名打印
修改原因:增加邮件信息列;修正在部分浏览器下下载文件时乱码的情况
修改主要代码:
增加邮件信息列:
-
- 0 => array("用户名{$Fstring}",'联系电话','E-Mail', '个人说明','备注选项','分工'),
- ......
- $query = $db->query("select t.*,m.gender, m.email from {$tablepre}partyers t left join {$tablepre}members m on m.uid=t.uid where t.tid='$tid' and t.verified='4' order by t.dateline desc");
- ......
- $ts[2] = $rs['email'];
- ......
复制代码
修正乱码
- function generateXML ($filename) {
-
- header("Content-Type: application/vnd.ms-excel; charset=utf-8");
- $encoded_filename = urlencode($filename);
- $encoded_filename = str_replace("+", "%20", $encoded_filename);
-
- $ua = $_SERVER["HTTP_USER_AGENT"];
- if (preg_match("/MSIE/", $ua)) {
- header('Content-Disposition: attachment; filename="' . $encoded_filename . '.xls"');
- } else if (preg_match("/Firefox/", $ua)) {
- header('Content-Disposition: attachment; filename*="utf8\'\'' . $filename . '.xls"');
- } else {
- header('Content-Disposition: attachment; filename="' . $filename . '.xls"');
- }
复制代码
时间:2012年9月9日
修改人:鹏鹏
修改文件:bbs/templates/default/party_print.html
涉及功能:活动报名打印
修改原因:该模板没有header信息,导致活动页面打印报名人员信息时,在浏览器默认编码不是utf8的情况下会有乱码
修改主要代码:
增加了头信息等:
-
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
复制代码 |
|