Commit Graph

3975 Commits

Author SHA1 Message Date
thinkphp
66d9cccee5 Merge branch 'master' of https://git.topthink.com/topteam/framework 2017-08-02 18:12:47 +08:00
thinkphp
372111c3a9 修正对象的条件查询 2017-08-02 18:11:55 +08:00
yunwuxin
38f69e5302 完善分页类 2017-08-02 16:56:47 +08:00
thinkphp
59dc931616 改进 2017-08-02 13:39:24 +08:00
thinkphp
ebd3421a56 改进Config类支持额外配置的动态加载 2017-08-02 11:58:35 +08:00
thinkphp
5479af4a85 input助手函数支持route变量获取 2017-07-31 12:13:48 +08:00
Hanqing Sun
80ea6df367 Collection::append() 判断数据是否存在(null)
调用collection()->append(['关联'=>['属性']]),如果遇到某个模型对象的关联查询到null,则append会导致null object错误
2017-07-31 10:52:15 +08:00
thinkphp
d1c2044745 Merge branch 'master' of https://github.com/top-think/framework 2017-07-27 18:03:26 +08:00
thinkphp
71240f71a5 修正事务的断线重连 2017-07-27 18:02:51 +08:00
7IN0SAN9
8cc61ba368 fix #759 2017-07-27 16:21:38 +08:00
thinkphp
332e21ab47 Merge branch 'master' of https://github.com/top-think/framework 2017-07-27 15:55:49 +08:00
thinkphp
83f6bd0d66 改进控制器不存在的错误提示 2017-07-27 15:53:56 +08:00
thinkphp
459a2290ac 注释调整 2017-07-27 08:01:39 +08:00
thinkphp
58de4d7cc3 改进 2017-07-25 19:27:20 +08:00
thinkphp
3ce0120251 修正单元测试 2017-07-25 17:57:21 +08:00
thinkphp
1b9cef6232 改进 2017-07-25 17:49:17 +08:00
thinkphp
da03ea07e9 改进 2017-07-25 17:08:11 +08:00
thinkphp
ea26d37075 改进模板的三元运算标签 2017-07-25 17:00:55 +08:00
thinkphp
8ff20f98d0 改进关联的属性绑定 2017-07-20 17:52:11 +08:00
thinkphp
8a52dd232f Merge branch 'master' of https://github.com/top-think/framework 2017-07-18 16:19:42 +08:00
thinkphp
dfdef9a443 改进xmlresponse 2017-07-18 16:18:45 +08:00
uuling
860c85bda2 修复 重新生成session_id bug
将私有方法修改为公有方法
2017-07-18 16:07:54 +08:00
thinkphp
14de36b6f4 验证错误信息补充 2017-07-17 16:04:51 +08:00
thinkphp
52e33ddbc7 数据库驱动改进 2017-07-12 15:21:37 +08:00
thinkphp
8d731b2f4c 改进Db类的强制重连 2017-07-12 10:27:48 +08:00
thinkphp
8e61503111 改进路由分组的全局完整路由匹配 2017-07-08 08:35:54 +08:00
thinkphp
1245d8fae9 改进RouteNotFound异常提示 2017-07-07 16:03:26 +08:00
thinkphp
37527368b4 改进 2017-07-07 11:35:47 +08:00
thinkphp
4f92dbc170 改进Url生成 2017-07-07 11:31:54 +08:00
thinkphp
49b007f542 改进模型 2017-07-07 11:16:39 +08:00
thinkphp
d95dec72c3 Merge branch 'master' of https://github.com/top-think/framework 2017-07-07 10:42:19 +08:00
thinkphp
70a6bff2ab 改进Url生成对端口号的支持 2017-07-07 10:41:53 +08:00
thinkphp
5c1d516a65 修正聚合查询返回null的问题 2017-07-06 23:23:06 +08:00
thinkphp
7445dce2e8 修正 2017-07-06 18:01:15 +08:00
thinkphp
094dde5d8d 修正allowfield方法影响时间字段写入的问题 v5.0.10 2017-07-05 13:49:20 +08:00
thinkphp
ac7dbafab2 优化query类的insert方法 2017-07-05 13:32:13 +08:00
thinkphp
c80190f778 改进 2017-07-05 12:41:32 +08:00
thinkphp
e428c43ec5 改进模型类的checkallowfield方法 2017-07-05 11:35:06 +08:00
thinkphp
5c733a7743 修改器和获取器方法支持第三个参数关联数据 2017-07-04 23:38:17 +08:00
thinkphp
0cfb72c6b5 增加record_trace配置参数用于日志记录trace信息 2017-07-04 19:02:33 +08:00
thinkphp
90d71bbc76 版本号更新 2017-07-04 11:46:13 +08:00
thinkphp
1b37ce1abd 增加https_agent_name配置参数 改进Request类的isssl方法 2017-07-04 11:35:57 +08:00
thinkphp
94f535f293 默认关闭调试模式 2017-07-04 09:10:01 +08:00
thinkphp
6e94f2eae7 修正数据库查询一处问题 改进数据库异常避免暴露敏感信息 2017-07-04 09:08:52 +08:00
thinkphp
439ccdf418 修正拼写 2017-07-03 08:41:12 +08:00
uuling
bbdd88b2c4 修复 传入数组批量设置数据表以及别名 bug
Db::table('think_user')->alias(['think_user'=>'user','think_dept'=>'dept'])->join('think_dept','dept.user_id= user.id')->select();
生成的SQL为 
SELECT * FROM think_user user INNER JOIN think_dept think_dept ON dept.user_id= user.id
修改后生成的SQL为 
SELECT * FROM think_user user INNER JOIN think_dept dept ON dept.user_id= user.id
2017-07-01 22:37:07 +08:00
thinkphp
b06c6ea430 改进路由变量规则的定义 支持完整正则限定 2017-06-30 11:19:43 +08:00
thinkphp
9c0e2d5d9d 修正Build类 2017-06-30 10:33:35 +08:00
thinkphp
5da8bd962a 改进缓存标签 2017-06-29 16:29:49 +08:00
thinkphp
2615cf99b7 修正scope方法 2017-06-29 11:05:04 +08:00