最近有反应社区不支持IE6的,话说我们真心需要支持IE6吗?
支持方:IE6使用人数多,如果取消支持的话可能导致用户流失
反对方:IE6不符合标准,如果支持的话会在维护和管理上带来很多麻烦
中立方:最好提示IE6用户升级
你认为呢?
本帖最后由 hcl 于 2012-8-9 17:18 编辑
先说好,严禁发布无关回复,见者立删
原来@SilverBullet 的登记贴一些信息已经失效,现在站长需要重新登记
格式:
ID:
UID:
参与管理内容:
本帖最后由 SilverBullet 于 2013-9-1 14:29 编辑
请按照以下格式登记对Discuz源文件的修改,以便升级后重置修改处
修改人 | |
修改时间 | |
文件名 | xxxx.php |
路径 | source/xxx/xxx |
原代码 | [mw_shl_code=php,true]echo[/mw_shl_code] |
现代码 | [mw_shl_code=php,true]printf[/mw_shl_code] |
修改人 | Silver Bullet(9700) |
修改时间 | 2013-8-29 |
文件名 | misc_stat.php |
路径 | source/module/misc |
原代码 | [mw_shl_code=php,true] $query = C::t('forum_forum')->fetch_all_by_status(); //Modified:Silver Bullet 20130829 1250Z [/mw_shl_code] |
现代码 | [mw_shl_code=php,true] $query = C::t('forum_forum')->fetch_all_without_status(); //Modified:Silver Bullet 20130829 1250Z [/mw_shl_code] |
备注 | 修改函数调用,统计管理团队的时候能统计到所有板块,与下面的函数配合 |
修改人 | Silver Bullet(9700) |
修改时间 | 2013-8-29 |
文件名 | table_forum_forum.php |
路径 | source/class/table |
原代码 | [mw_shl_code=php,true] public function fetch_all_by_status($status, $orderby = 1) { $status = $status ? 1 : 0; $ordersql = $orderby ? 'ORDER BY t.type, t.displayorder' : ''; return DB::fetch_all('SELECT * FROM '.DB::table($this->_table)." t WHERE t.status='$status' $ordersql"); }[/mw_shl_code] |
现代码 | [mw_shl_code=php,true] public function fetch_all_by_status($status, $orderby = 1) { $status = $status ? 1 : 0; $ordersql = $orderby ? 'ORDER BY t.type, t.displayorder' : ''; return DB::fetch_all('SELECT * FROM '.DB::table($this->_table)." t WHERE t.status='$status' $ordersql"); } //Added by Silver Bullet at 20130829 2051ZULU //Removed restrict of function fetch_all_by_status public function fetch_all_without_status(){ return DB::fetch_all('SELECT * FROM '.DB::table($this->_table)." t ORDER BY t.type, t.displayorder"); }[/mw_shl_code] |
备注 | 加入新函数,是fetch_all_by_status函数取消条件判断的版本,可以查询到所有的板块 |
修改人 | Silver Bullet (9700) |
修改时间 | 2013-08-29 |
文件名 | misc_stat.php |
路径 | source/module/misc |
原代码 | [mw_shl_code=php,true]if(!empty($statvars['lastupdated']) && TIMESTAMP - $statvars['lastupdated'] < CACHE_TIME) { return $statvars; }[/mw_shl_code] |
现代码 | [mw_shl_code=php,true] /*Temp.ly Banned, in order to refresh cache directly*/ if(!empty($statvars['lastupdated']) && TIMESTAMP - $statvars['lastupdated'] < CACHE_TIME) { return $statvars; }[/mw_shl_code] |
备注 | 加了注释而已,需要清理缓存的时候把这个判断注释就好了 |
本帖最后由 SilverBullet 于 2013-9-1 14:35 编辑
[tr][td=100]修改人[/td][td][/td][/tr]
[tr][td=100]修改时间[/td][td][/td][/tr]
[tr][td=100]文件名[/td][td]xxxx.php[/td][/tr]
[tr][td=100]路径[/td][td]source/xxx/xxx[/td][/tr]
[tr][td=100]原代码[/td][td]***此处用代码工具放代码***[/td][/tr]
[tr][td=100]现代码[/td][td]***此处用代码工具放代码***[/td][/tr]
[tr][td=100]备注[/td][td]//你懂得[/td][/tr]
[查看全文]