thinkphp
83f6bd0d66
改进控制器不存在的错误提示
2017-07-27 15:53:56 +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
thinkphp
22b08f32f5
Merge branch 'master' of https://github.com/top-think/framework
2017-06-28 23:38:22 +08:00
thinkphp
aaeba8a565
改进模型类的checkAllowField方法
2017-06-28 23:37:29 +08:00
thinkphp
fb1124a91d
改进Connection类
2017-06-28 13:36:56 +08:00
thinkphp
439d05fa6f
自动请求缓存不区分大小写
2017-06-27 17:56:31 +08:00
thinkphp
a27f5299df
改进模型的save方法 避免allowField方法影响而删除数据
2017-06-27 08:17:53 +08:00
thinkphp
e40a795b43
修正whereNotLike方法
2017-06-25 10:41:51 +08:00
thinkphp
946845e0f4
代码改进
2017-06-23 14:48:38 +08:00
thinkphp
915c46c4bd
修正多对多默认的中间表获取
2017-06-23 14:05:28 +08:00
thinkphp
e427ae5776
注释修正
2017-06-23 12:28:31 +08:00
thinkphp
414e6d6a11
response_start位置更改为response_send
2017-06-23 12:27:03 +08:00
thinkphp
3e62fe152f
增加response_start标签位 路由增加response方法用于绑定response处理行为
2017-06-23 12:14:23 +08:00
thinkphp
e9db7847d3
改进更新后的模型update_time数据更新
2017-06-22 18:13:05 +08:00