Changeset 2634134
- Timestamp:
- 11/23/2021 12:41:34 PM (4 years ago)
- Location:
- wxsync/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
setting.php (modified) (2 diffs)
-
wxsync.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wxsync/trunk/readme.txt
r2615025 r2634134 5 5 Requires at least: 3.3 6 6 Tested up to: 5.2.2 7 Stable tag:2.7.1 17 Stable tag:2.7.12 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wxsync/trunk/setting.php
r2445748 r2634134 432 432 var arr = urls.split('\n'); 433 433 var len = arr.length; 434 435 var arr2 = []; 434 436 for(var i = 0; i < len ;i++){ 435 437 if(!arr[i]){ 436 alert('有空白行,请去除,可能是末尾空白行'); 438 // alert('有空白行,请去除,可能是末尾空白行'); 439 continue; 440 } 441 if(arr[i].indexOf('mp.weixin.qq.com') == -1 && arr[i].indexOf('std.cloud') == -1){ 442 alert('请检查链接是不是微信网址'); 437 443 return false; 438 444 } 439 if(arr[i].indexOf('mp.weixin.qq.com') == -1 && arr[i].indexOf('std.cloud') == -1){ 440 alert('请检查链接'); 441 return false; 442 } 445 arr2.push(arr[i]); 443 446 } 447 arr = arr2; 444 448 445 449 var article_time = jQuery('select[name=article_time]').val(); … … 514 518 jQuery('#debugresult_html').text(str); 515 519 jQuery('#debugresult_html').css('display','block'); 520 521 jQuery('#submitresult').append('<p style="width:500px;word-wrap:break-word;">位置'+reqIndex+',请求错误,'+arr[index]+'</p>'); 522 reqIndex++; 523 reqfunc(reqIndex); 524 516 525 } 517 526 -
wxsync/trunk/wxsync.php
r2615023 r2634134 4 4 Plugin URI: http://std.cloud 5 5 Description: 标准云微信公众号文章免费采集、<strong>任意公众号自动采集5元/月</strong>、<strong>历史文章导出30元/公众号</strong> 6 Version: 2.7.1 16 Version: 2.7.12 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.1 1';26 $GLOBALS['wxsync_ver'] = '2.7.12'; 27 27 $GLOBALS['wxsync_code'] = 0; 28 28
Note: See TracChangeset
for help on using the changeset viewer.