mirror of
https://github.com/typecho/typecho.git
synced 2025-03-19 17:39:42 +01:00
修正XMLRPC不能获取文章是否有草稿状态 1608行 $this->typechoToWordpressStatus($posts->status, 'post') 改为 $this->typechoToWordpressStatus(($posts->hasSaved || 'post_draft' == $posts->type) ? 'draft' : $posts->status, 'post')