Commit Graph

368 Commits

Author SHA1 Message Date
joyqi e15c2966a9 still working on it 2021-08-30 14:52:52 +08:00
joyqi 93b5656109 fix action 2021-08-27 18:27:21 +08:00
joyqi 539ef5e111 still working on it 2021-08-27 18:06:57 +08:00
joyqi 7a1b74b351 still working on it 2021-08-26 22:19:04 +08:00
joyqi 540fba3122 fix class rewrite 2021-08-26 18:48:04 +08:00
joyqi 28f687e7fe Remove some unnecessary method. 2021-08-26 18:25:43 +08:00
joyqi 91a970521c New context layer for widget. Improve backup performance. 2021-08-26 15:00:38 +08:00
joyqi 75d5677d7d Make API Typecho_Common::arrayFlatten deprecated, please use array_column instead. 2021-08-20 16:42:40 +08:00
joyqi 687ab6260a change error handler 2021-08-20 16:30:16 +08:00
joyqi 1c189588db Reformat code 2021-08-20 15:03:45 +08:00
joyqi df854a3bf0 Remove minor version 2021-08-20 00:58:22 +08:00
joyqi d0cedde7c0 change build target 2021-08-19 16:56:59 +08:00
joyqi 954e710013 remove func_get_args 2021-08-18 23:16:08 +08:00
joyqi 4b97110087 fix stack 2021-08-18 22:55:32 +08:00
joyqi 3d0b5d5f6c reformat code 2021-08-18 22:29:34 +08:00
joyqi 44aef6c707 reformat code 2021-08-18 18:41:39 +08:00
joyqi 467471c9c3 finish install 2021-08-18 16:09:22 +08:00
joyqi 7f3cd2b9e8 Remove isAppEngine detector 2021-08-18 11:41:52 +08:00
joyqi 0d4299d99e update install 2021-08-17 01:53:47 +08:00
joyqi bac7340c2a improve installation 2021-08-16 18:34:25 +08:00
joyqi 371b88f9f8 fix simpleLogin 2021-08-06 17:23:42 +08:00
joyqi a1168057a8 fix #1124
Extend usage scope of method simpleLogin.
2021-08-05 15:13:41 +08:00
joyqi ac74c6e0cb fix #1104 2021-06-11 14:05:35 +08:00
joyqi 54af368084 Add more media file types. 2021-05-21 11:30:28 +08:00
joyqi 0dbc14da02 fix workflows 2021-05-20 14:46:16 +08:00
joyqi 60fdcae8e5 fix #1077 2021-05-20 14:02:15 +08:00
joyqi b80bce520c fix #1083 2021-04-03 22:54:23 +08:00
yongirl a85c242e09 scheme check bug 2021-04-02 14:06:47 +08:00
yongirl 714e8788e8 fix get trackback param bug 2021-04-02 13:52:26 +08:00
joyqi eba20a69f0 fix #1074
fix #966
2021-03-19 01:33:08 +08:00
joyqi 3b7d2dc319 fix #1049 2020-12-18 16:15:02 +08:00
joyqi 74c8143825 fix #1008 2020-10-03 21:20:27 +08:00
joyqi 0b68fa8b14 fix #968 2020-06-11 18:08:32 +08:00
Atom Long 09a81d394c Merge branch 'master' of https://github.com/typecho/typecho 2020-05-12 17:32:38 +08:00
Atom Long 78e2dfbde8 fixed code indent, TAB --> 4 spaces 2020-05-12 17:29:41 +08:00
joyqi 6398551ac3 fix #952 2020-05-12 16:08:43 +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 d695ce3ce5 Merge pull request #871 from AlanDecode/master
修复通过 metaWeblog 接口新建草稿时返回 cid 错误的问题
2019-12-18 11:47:49 +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
权那他 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