Commit Graph

3933 Commits

Author SHA1 Message Date
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
thinkphp
d30316efda model类增加removeRelation方法 2017-06-19 15:27:55 +08:00
ThinkPHP
381fb1fef8 Apply fixes from StyleCI 2017-06-16 09:04:19 +08:00
Axios
bdc9c6a07f library/think/Log.php 161行添加log存储完成行为监听
我在进行多进程异步通信操作时,需要回收子进程,但是又不要影响日志输出,试了官方给出各个行为监听,都会中断log输出。我希望在这里加一个log存储完成的行为监听,这样就可以在log存储完成后,进行子进程回收工作。
2017-06-16 08:38:59 +08:00
thinkphp
b50084099b 改进 2017-06-14 16:21:41 +08:00
thinkphp
274666f7c5 改进redirect 2017-06-14 16:16:18 +08:00
thinkphp
3985a63c67 Merge branch 'master' of https://github.com/top-think/framework 2017-06-12 11:04:40 +08:00
thinkphp
9a53fc7934 改进配置文件读取 2017-06-12 11:04:13 +08:00
thinkphp
b19f6baf1a 改进Build类 2017-06-10 19:52:14 +08:00
thinkphp
0e2bab2804 模型类增加setInc和setDec方法 2017-06-09 15:35:33 +08:00
Heyu
45d105cec0 修复配置extra目录临时文件名中含CONF_EXT(如 vi 的 .swp 文件)被错误加载导致报错的问题 2017-06-09 12:41:21 +08:00
thinkphp
8a5ad4b79b 修正 2017-06-07 13:00:37 +08:00
thinkphp
46589692eb 模型类增加autoWriteTimestamp方法动态设置时间字段写入 2017-06-07 12:58:34 +08:00
thinkphp
46620b541b 改进断线重连判断 2017-06-07 08:53:14 +08:00
thinkphp
08e42118f6 改进多对多的数据更新 2017-06-05 11:24:33 +08:00
thinkphp
e5a24df10d 修正注释 2017-06-03 12:09:28 +08:00
thinkphp
cdfd18a0bd 改进环境变量的布尔值读取 2017-06-03 11:04:15 +08:00
thinkphp
93e25ef386 修正Model 2017-06-01 23:07:37 +08:00
thinkphp
8271eea091 改进BelongsToMany关联查询 2017-06-01 16:49:21 +08:00
thinkphp
05837a9590 Merge branch 'master' of https://github.com/top-think/framework 2017-06-01 16:22:18 +08:00
thinkphp
fa36ae58ba 改进Url类的域名传入 2017-06-01 16:21:45 +08:00
thinkphp
73cafb95dc 修正Query类的value和column方法 2017-05-29 09:30:00 +08:00
thinkphp
1bb78d11b7 改进in查询的去重问题 2017-05-27 22:41:39 +08:00
thinkphp
d7394e29df 修正注释 2017-05-27 10:38:34 +08:00
thinkphp
30cc49abc7 调整模型的save方法before_update检查位置 2017-05-25 11:04:37 +08:00
thinkphp
d22b666540 修正命令行文件生成 2017-05-25 10:48:23 +08:00
thinkphp
2f1a284d3b 改进 2017-05-23 16:42:04 +08:00
thinkphp
4ceb4f4d95 Url类改进 2017-05-22 15:46:02 +08:00
thinkphp
ab2222b100 改进命令行下面的URL生成 2017-05-22 14:43:42 +08:00
thinkphp
8b2a7546e0 Merge branch 'master' of https://git.topthink.com/topteam/framework 2017-05-22 12:40:26 +08:00
thinkphp
bb3cfae0a6 添加default_url_root参数设置默认URL根地址 2017-05-22 12:39:46 +08:00