Plugin Directory

Changeset 859790


Ignore:
Timestamp:
02/18/2014 12:18:08 AM (12 years ago)
Author:
sutherlandboswell
Message:

Fixed bug detecting VK IDs

Location:
video-thumbnails
Files:
3 edited
26 copied

Legend:

Unmodified
Added
Removed
  • video-thumbnails/tags/2.6.1/php/providers/class-vk-thumbnails.php

    r859638 r859790  
    3636    // Regex strings
    3737    public $regexes = array(
    38         '#(//(?:www\.)?vk\.com/video_ext\.php\?oid=[0-9]+&id=[0-9]+&hash=[0-9a-zA-Z]+)#', // URL
     38        '#(//(?:www\.)?vk\.com/video_ext\.php\?oid=\-?[0-9]+&id=\-?[0-9]+&hash=[0-9a-zA-Z]+)#', // URL
    3939    );
    4040
  • video-thumbnails/tags/2.6.1/readme.txt

    r859638 r859790  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 2.6
     7Stable tag: 2.6.1
    88
    99Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
     
    118118
    119119== Changelog ==
     120
     121= 2.6.1 =
     122* Fixed VK bug caused by IDs with a negative int
    120123
    121124= 2.6 =
  • video-thumbnails/tags/2.6.1/video-thumbnails.php

    r859638 r859790  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.6
     8Version: 2.6.1
    99License: GPL2
    1010*/
     
    2929define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) );
    3030define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' );
    31 define( 'VIDEO_THUMBNAILS_VERSION', '2.6' );
     31define( 'VIDEO_THUMBNAILS_VERSION', '2.6.1' );
    3232
    3333// Providers
  • video-thumbnails/trunk/php/providers/class-vk-thumbnails.php

    r859638 r859790  
    3636    // Regex strings
    3737    public $regexes = array(
    38         '#(//(?:www\.)?vk\.com/video_ext\.php\?oid=[0-9]+&id=[0-9]+&hash=[0-9a-zA-Z]+)#', // URL
     38        '#(//(?:www\.)?vk\.com/video_ext\.php\?oid=\-?[0-9]+&id=\-?[0-9]+&hash=[0-9a-zA-Z]+)#', // URL
    3939    );
    4040
  • video-thumbnails/trunk/readme.txt

    r859638 r859790  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 2.6
     7Stable tag: 2.6.1
    88
    99Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
     
    118118
    119119== Changelog ==
     120
     121= 2.6.1 =
     122* Fixed VK bug caused by IDs with a negative int
    120123
    121124= 2.6 =
  • video-thumbnails/trunk/video-thumbnails.php

    r859638 r859790  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.6
     8Version: 2.6.1
    99License: GPL2
    1010*/
     
    2929define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) );
    3030define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' );
    31 define( 'VIDEO_THUMBNAILS_VERSION', '2.6' );
     31define( 'VIDEO_THUMBNAILS_VERSION', '2.6.1' );
    3232
    3333// Providers
Note: See TracChangeset for help on using the changeset viewer.