1136 Commits

Author SHA1 Message Date
Atom Long
78e2dfbde8
fixed code indent, TAB --> 4 spaces 2020-05-12 17:29:41 +08:00
Atom Long
408cb56ce1 Fix #334: Support uploading pictures using Windows Live Writer or Open Live Writer. 2020-05-09 00:20:50 +08:00
Atom Long
029579be4d IXR_Error is a class, not a function. 2020-05-09 00:08:06 +08:00
joyqi
5ba2f03206 fix #945 2020-04-08 00:56:47 +08:00
joyqi
691b43bc48 fix #941 2020-04-01 17:17:31 +08:00
joyqi
3cc75893da close #940
fix #936
2020-04-01 17:10:44 +08:00
joyqi
3afd22c12c Merge branch 'master' of https://github.com/typecho/typecho 2020-03-10 10:48:09 +08:00
joyqi
3bba7cd9dd fix #926
close #928
2020-03-10 10:47:40 +08:00
joyqi
0020814e18
Merge pull request #853 from Seevil/patch-2
修复最近回复链接
2020-01-17 10:50:55 +08:00
joyqi
8d2aa236b1 fix 2019-12-19 22:15:15 +08:00
joyqi
d695ce3ce5
Merge pull request #871 from AlanDecode/master
修复通过 metaWeblog 接口新建草稿时返回 cid 错误的问题
2019-12-18 11:47:49 +08:00
joyqi
ac1527ce43
Merge pull request #901 from jeaxnew/patch-1
Update Request.php
2019-12-18 11:41:22 +08:00
jeaxnew
9948a62557
Update Request.php
fix #567
2019-11-13 19:04:56 +08:00
joyqi
75237e6a44 fix #896 2019-10-31 16:47:33 +08:00
joyqi
c17bdaf606
Merge pull request #882 from kraity/master
修复 XmlRpc 接口的几个错误问题
2019-09-03 14:10:53 +08:00
joyqi
147f7ede98 fix #881
Add 'setInputsAttribute' method for all form element classes.
2019-09-03 13:44:16 +08:00
权那他
5abd915678
解决无法判断该独立页面是否有草稿 2019-08-23 13:20:52 +08:00
权那他
64a66be475
解决无法编辑独立页面 2019-08-23 13:19:51 +08:00
权那他
71c72c7926
修正XMLRPC不能获取文章是否有草稿状态
修正XMLRPC不能获取文章是否有草稿状态
1608行
$this->typechoToWordpressStatus($posts->status, 'post')
改为
$this->typechoToWordpressStatus(($posts->hasSaved || 'post_draft' == $posts->type) ? 'draft' : $posts->status, 'post')
2019-08-18 10:16:54 +08:00
权那他
6d27a24fb8
修正XMLRPC只能发表发布状态的问题,修正后可以发布私密、草稿、等等状态的文章
修正XMLRPC只能发表发布状态的问题,修正后可以发布私密、草稿、等等状态的文章
在1442行
$status = $this->wordpressToTypechoStatus($content["{$type}_status"], $type);
后面增加一行判断
$input['visibility'] = isset($content["visibility"]) ? $content["visibility"] : $status;
2019-08-18 10:14:26 +08:00
权那他
2e2835ce6b
修复用XMLRPC获取评论时无法得到垃圾评论和待审核评论
修复用XMLRPC获取评论时无法得到垃圾评论和待审核评论
1056行
$input['status'] = 'hold' == $input['status'] ? $input['status'] : $this->wordpressToTypechoStatus($struct['status']); 
改为
$input['status'] = $this->wordpressToTypechoStatus($struct['status'], 'comment');
2019-08-18 10:11:17 +08:00
AlanDecode
664d8bcb23 修复通过 metaWeblog 接口新建草稿时返回 cid 错误的问题 2019-06-11 10:06:44 +08:00
Intern
4df129b01c
修复最近回复链接
用户链接把评论链接覆盖掉了导致并不能点击前往回复的链接地址
2019-04-12 22:52:17 +08:00
joyqi
32c2f8217d fix #845 2019-03-16 14:50:13 +08:00
那他
91d83d40b1
BUG 2019-02-11 17:03:53 +08:00
那他
0cf11bb933
Update Dockerfile 2019-02-11 16:55:15 +08:00
那他
4155491719
Update Dockerfile 2019-02-11 16:31:08 +08:00
joyqi
8045a0d403 fix #821 2019-01-10 00:24:38 +08:00
joyqi
57a5857c1f
Merge pull request #820 from xyuanmu/patch-2
fix Undefined variable: options in Fake.php
2018-12-26 11:06:46 +08:00
xyuanmu
632ac977ee
Update Fake.php
测试发现,这个值是不需要的
2018-12-22 12:05:02 +08:00
xyuanmu
247aa9e043
fix Undefined variable: options in Fake.php 2018-12-14 23:14:57 +08:00
joyqi
9f8491076f add missing options 2018-11-26 14:20:08 +08:00
joyqi
f4a34e0d7b fix 2018-11-26 14:15:25 +08:00
joyqi
b6626e42d8 fix error 2018-11-26 13:28:19 +08:00
joyqi
26b70e2af8 Add function: mark status of multi posts. 2018-11-26 11:38:45 +08:00
joyqi
586492e1b8
Merge pull request #801 from jrotty/patch-1
增加标签统计
2018-11-21 13:32:00 +08:00
jrotty
430649df81
增加标签统计 2018-11-10 14:21:07 +08:00
joyqi
3050aa98ab
Merge pull request #798 from renothing/ssl-proxy-to-http
fix error when use different protocol between reverse proxy and backend.
2018-10-30 10:31:17 +08:00
renothing
1e7e7e7997 fix error when use different protocol between reverse proxy and backend. 2018-10-28 05:41:02 +08:00
joyqi
235888cc3e fix typo 2018-10-23 16:39:15 +08:00
joyqi
0b1096c588 Now you can paste an image from clicpboard into the editor directly. 2018-10-23 16:29:48 +08:00
joyqi
ad10000aca
Merge pull request #782 from Seevil/patch-1
解决插件注入右上角导航会有两个 | | 出现
2018-10-23 14:37:05 +08:00
joyqi
a6fe58e5b2 fix #785 2018-10-23 14:33:33 +08:00
joyqi
e492f9df4d
Merge pull request #785 from hongweipeng/noopener
设置noopener防止钓鱼攻击
2018-10-23 14:25:31 +08:00
hongweipeng
350b2edb2b 设置noopener防止钓鱼攻击 2018-09-29 13:40:22 +08:00
joyqi
b70d240d3a fix #755 2018-09-26 11:52:56 +08:00
joyqi
6fbb65487c Remove auto complete for some input elements. 2018-09-26 11:11:44 +08:00
joyqi
b497004516 fix #753 2018-09-26 11:07:07 +08:00
Intern
a920bffd77
解决插件注入右上角导航会有两个 | | 出现
解决插件注入右上角导航会有两个| | 出现,如:插件名| |用户名|登出|网站 此种现象出现,原因为换行空格导致的。
2018-09-19 22:39:35 +08:00
joyqi
df7aeda761
Merge pull request #780 from bestony/add-gmail-support
fix: Support plus in email address
2018-09-07 10:55:49 +08:00