Changeset 2714161
- Timestamp:
- 04/25/2022 06:38:24 AM (4 years ago)
- Location:
- beepress/trunk
- Files:
-
- 7 edited
-
beebox/includes/Endpoint/CDN.php (modified) (1 diff)
-
beebox/includes/Endpoint/Code.php (modified) (1 diff)
-
beebox/includes/Endpoint/Crawler.php (modified) (2 diffs)
-
beebox/includes/Endpoint/License.php (modified) (1 diff)
-
beebox/includes/Endpoint/Post.php (modified) (1 diff)
-
beepress.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beepress/trunk/beebox/includes/Endpoint/CDN.php
r2271240 r2714161 85 85 'callback' => array($this, 'handleSubmit'), 86 86 'args' => array(), 87 'permission_callback' => function($request) { 88 // ... permissions check goes here 89 return current_user_can("edit_posts"); 90 }, 87 91 ) 88 92 )); -
beepress/trunk/beebox/includes/Endpoint/Code.php
r2284692 r2714161 56 56 'callback' => array($this, 'handleSubmit'), 57 57 'args' => array(), 58 'permission_callback' => function($request) { 59 // ... permissions check goes here 60 return current_user_can("edit_posts"); 61 }, 58 62 ) 59 63 )); -
beepress/trunk/beebox/includes/Endpoint/Crawler.php
r2518782 r2714161 36 36 'callback' => array($this, 'handleSubmit'), 37 37 'args' => array(), 38 'permission_callback' => function($request) { 39 // ... permissions check goes here 40 return current_user_can("edit_posts"); 41 }, 38 42 ) 39 43 )); … … 164 168 $res = array( 165 169 'success' => false, 166 'error_msg' => $response['error_msg'] 170 'error_msg' => $response['error_msg'], 167 171 ); 168 172 } -
beepress/trunk/beebox/includes/Endpoint/License.php
r2553974 r2714161 60 60 'callback' => array($this, 'handleSubmit'), 61 61 'args' => array(), 62 'permission_callback' => function($request) { 63 // ... permissions check goes here 64 return current_user_can("edit_posts"); 65 }, 62 66 ) 63 67 )); -
beepress/trunk/beebox/includes/Endpoint/Post.php
r2311698 r2714161 150 150 'callback' => array($this, 'handleSubmit'), 151 151 'args' => array(), 152 'permission_callback' => function($request) { 153 // ... permissions check goes here 154 return current_user_can("edit_posts"); 155 }, 152 156 ) 153 157 )); -
beepress/trunk/beepress.php
r2666559 r2714161 4 4 Plugin URI: http://xingyue.artizen.me?source=wp 5 5 Description: 蜜蜂采集(BeePress) 是一款能够帮助你导入微信公众号文章、知乎专栏文章、简书文章、今日头条文章的插件(支持规则配置采集其他网站文章),可以实现单篇或者批量导入、自动同步文章、采集指定公众号所有历史文章(公众号自动同步和历史文章功能不再提供),支持将图片资源保存到本地。 6 Version: 6.9. 76 Version: 6.9.8 7 7 Author: Bee 8 8 Author URI: http://xingyue.artizen.me?source=wp … … 13 13 * 初始化 14 14 */ 15 define('BEEPRESS_VERSION', '6.9. 7');15 define('BEEPRESS_VERSION', '6.9.8'); 16 16 if(!class_exists('simple_html_dom_node')){ 17 17 require_once("simple_html_dom.php"); -
beepress/trunk/readme.txt
r2666559 r2714161 4 4 Author URI: http://xingyue.artizen.me?source=wp 5 5 Plugin URI: http://xingyue.artizen.me?source=wp 6 Stable tag: 6.9. 76 Stable tag: 6.9.8 7 7 Requires at least: 4.2 8 8 Requires PHP: 5.3.0 … … 57 57 None 58 58 == Changelog == 59 = 6.9.8 = 60 * 漏洞修复 59 61 = 6.9.7 = 60 62 * 兼容 php8
Note: See TracChangeset
for help on using the changeset viewer.