Changeset 2269560
- Timestamp:
- 03/28/2020 01:20:05 AM (6 years ago)
- Location:
- wxsync/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wxsync.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wxsync/trunk/readme.txt
r2268873 r2269560 5 5 Requires at least: 3.3 6 6 Tested up to: 5.0.1 7 Stable tag:2.7. 47 Stable tag:2.7.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wxsync/trunk/wxsync.php
r2268873 r2269560 4 4 Plugin URI: http://std.cloud 5 5 Description: 标准云微信公众号文章免费采集、<strong>任意公众号自动采集5元/月</strong>、<strong>历史文章导出20元/公众号</strong> 6 Version: 2.7. 46 Version: 2.7.5 7 7 Author: 标准云(std.cloud) 8 8 Author URI: http://std.cloud … … 24 24 $GLOBALS['wxsync_tab'] = ''; 25 25 $GLOBALS['wxsync_error'] = array(); 26 $GLOBALS['wxsync_ver'] = '2.7. 4';26 $GLOBALS['wxsync_ver'] = '2.7.5'; 27 27 $GLOBALS['wxsync_code'] = 0; 28 28 … … 666 666 } 667 667 668 669 //补充检测图片 670 preg_match_all('#url\("(.*)"\)#',$content,$checkarr); 671 foreach ($checkarr[1] as $src) { 672 $index = strpos($src,'qpic.cn'); 673 if($index > 0){ 674 $src2 = wxsync_attack_remote_pic($src,'qpic'); 675 if(false !== $src2){ 676 $thumbnail = $src2[0]; 677 $content = str_replace($src,$thumbnail,$content); 678 } 679 } 680 681 } 682 668 683 $content .= $source; 669 684
Note: See TracChangeset
for help on using the changeset viewer.