成长值: 252 签到天数: 4709 天 [LV.Master]伴坛终老
|
发表于 2019/12/23 20:29
|
显示全部楼层
|阅读模式
|Google Chrome 79.0.3945.88 |Windows 10
source/module/home/home_rss.php 中只获取了公开日志:
C::t('home_blog')->range(0, $pagenum, 'DESC', 'dateline', 0, null, $uid);
但是数据库文件中把传入的 0 忽略了。
!== null 的写法与其他 table 中参数的判断方法一致。
upload/source/class/table/table_home_blog.php
- $wheresql .= $friend ? ' AND '.DB::field('friend', $friend) : '';
复制代码
替换
- $wheresql .= ($friend !== null) ? ' AND '.DB::field('friend', $friend) : '';
复制代码
https://gitee.com/ComsenzDiscuz/DiscuzX/pulls/314
waf参数屏蔽某个用户的rss例如
|
|