Plugin Directory

Changeset 1556378


Ignore:
Timestamp:
12/16/2016 07:45:39 PM (9 years ago)
Author:
a.hoereth
Message:

Commit 2.3.2 changes.

Location:
featured-video-plus/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • featured-video-plus/trunk/CHANGELOG.md

    r1555973 r1556378  
    11# Changelog #
    22
     3## 2.3.2: 2016-12-16 ##
     4* Quick fix for *illegal video* message when using oEmbed. ([*](https://wordpress.org/support/topic/illegal-warning-displays-on-youtube-videos-2/), [*](https://wordpress.org/support/topic/illegal-warning-displays-on-youtube-videos/))
     5
    36## 2.3.1: 2016-12-16 ##
    4 * Quick fix 'are you sure' error on post creation. ([*](https://wordpress.org/support/topic/latest-update-causing-error/), [*](https://wordpress.org/support/topic/error-are-you-sure-you-want-to-do-this-3/))
     7* Quick fix for *are you sure* error on post creation. ([*](https://wordpress.org/support/topic/latest-update-causing-error/), [*](https://wordpress.org/support/topic/error-are-you-sure-you-want-to-do-this-3/))
    58
    69## 2.3.0: 2016-12-15 ##
  • featured-video-plus/trunk/featured-video-plus.php

    r1555973 r1556378  
    44Plugin URI: http://yrnxt.com/wordpress/featured-video-plus/
    55Description: Add Featured Videos to your posts and pages.
    6 Version: 2.3.1
     6Version: 2.3.2
    77Author: Alexander Höreth
    88Author URI: http://yrnxt.com
     
    3333// CONSTANTS
    3434if ( ! defined( 'FVP_VERSION' ) ) {
    35     define( 'FVP_VERSION', '2.3.1' );
     35    define( 'FVP_VERSION', '2.3.2' );
    3636}
    3737
  • featured-video-plus/trunk/php/class-backend.php

    r1555973 r1556378  
    192192            ), true, true ),
    193193            esc_html__(
    194                 'The inserted value is illegal. You might want to manually enable raw HTML embeds in the media settings.',
     194                'Could not resolve the inserted value to a video. Are you sure it is a legal video url and the server can connect to its provider? If you tried to insert a raw embed code, you might need to enable it in the media settings.',
    195195                'featured-video-plus'
    196196            )
     
    390390        } else {
    391391            $v = $this->oembed->request( $video );
    392             if ( ! empty( $raw ) && ! empty( $raw->provider_name ) ) {
     392            if ( ! empty( $v ) && ! empty( $v->provider_name ) ) {
    393393                $provider = strtolower( $v->provider_name );
    394394
  • featured-video-plus/trunk/readme.txt

    r1555973 r1556378  
    1111Requires at least: 3.7
    1212Tested up to: 4.7
    13 Stable tag: 2.3.1
     13Stable tag: 2.3.2
    1414
    1515Add Featured Videos to your posts and pages. Works like magic with most themes which use Featured Images. Local Media, YouTube, Vimeo and many more.
     
    113113== Changelog ==
    114114
     115= 2.3.2: 2016-12-16 =
     116* Quick fix for *illegal video* message when using oEmbed. ([*](https://wordpress.org/support/topic/illegal-warning-displays-on-youtube-videos-2/), [*](https://wordpress.org/support/topic/illegal-warning-displays-on-youtube-videos/))
     117
    115118= 2.3.1: 2016-12-16 =
    116 * Quick fix 'are you sure' error on post creation. ([*](https://wordpress.org/support/topic/latest-update-causing-error/), [*](https://wordpress.org/support/topic/error-are-you-sure-you-want-to-do-this-3/))
     119* Quick fix for *are you sure* error on post creation. ([*](https://wordpress.org/support/topic/latest-update-causing-error/), [*](https://wordpress.org/support/topic/error-are-you-sure-you-want-to-do-this-3/))
    117120
    118121= 2.3.0: 2016-12-15 =
Note: See TracChangeset for help on using the changeset viewer.