Plugin Directory

Changeset 2472816


Ignore:
Timestamp:
02/11/2021 05:44:02 AM (5 years ago)
Author:
imahui
Message:

version 1.3.7

Location:
wp-mini-program
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-mini-program/tags/1.3.7/include/filter.php

    r2470715 r2472816  
    101101    }
    102102    if($qvideo || $tencent) {
    103         $url = $qvideo?$qvideo[0]:$tencent?$tencent[0]:'';
     103        $url = '';
     104        $video = '';
     105        if( $qvideo ) {
     106            $url = $qvideo[0];
     107        } else if( $tencent ) {
     108            $url = $tencent[0];
     109        }
    104110        if($url) {
    105111            $video = apply_filters( 'tencent_video', $url );
    106         } else {
    107             $video = '';
    108112        }
    109113        if($video) {
  • wp-mini-program/tags/1.3.7/readme.txt

    r2470715 r2472816  
    44Tags: rest api, api, 小程序
    55Requires at least: 4.9.8
    6 Tested up to: 5.6
     6Tested up to: 5.6.1
    77Requires PHP: 5.6
    88Stable tag: 1.3.7
  • wp-mini-program/tags/1.3.7/wp-mini-program.php

    r2470715 r2472816  
    88Author URI: https://www.imahui.com/about.html
    99requires at least: 4.9.8
    10 tested up to: 5.6
     10tested up to: 5.6.1
    1111*/
    1212
  • wp-mini-program/trunk/include/filter.php

    r2470715 r2472816  
    101101    }
    102102    if($qvideo || $tencent) {
    103         $url = $qvideo?$qvideo[0]:$tencent?$tencent[0]:'';
     103        $url = '';
     104        $video = '';
     105        if( $qvideo ) {
     106            $url = $qvideo[0];
     107        } else if( $tencent ) {
     108            $url = $tencent[0];
     109        }
    104110        if($url) {
    105111            $video = apply_filters( 'tencent_video', $url );
    106         } else {
    107             $video = '';
    108112        }
    109113        if($video) {
  • wp-mini-program/trunk/readme.txt

    r2470715 r2472816  
    44Tags: rest api, api, 小程序
    55Requires at least: 4.9.8
    6 Tested up to: 5.6
     6Tested up to: 5.6.1
    77Requires PHP: 5.6
    88Stable tag: 1.3.7
  • wp-mini-program/trunk/wp-mini-program.php

    r2470715 r2472816  
    88Author URI: https://www.imahui.com/about.html
    99requires at least: 4.9.8
    10 tested up to: 5.6
     10tested up to: 5.6.1
    1111*/
    1212
Note: See TracChangeset for help on using the changeset viewer.