Plugin Directory

Changeset 1067714


Ignore:
Timestamp:
01/14/2015 07:58:33 AM (11 years ago)
Author:
trillamar
Message:

Fixed a bug where saving S3 link expiration time would not get saved if units were set in seconds.

Location:
secure-html5-video-player/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • secure-html5-video-player/trunk/readme.txt

    r1066668 r1067714  
    44Requires at least: 3.0
    55Tested up to: 4.1
    6 Stable tag: 3.11
     6Stable tag: 3.12
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    128128== Changelog ==
    129129
     130= 3.12 =
     131* Fixed a bug where saving S3 link expiration time would not get saved if units were set in seconds.
     132
    130133= 3.11 =
    131134* Fixed custom short code setting so that it can be properly set to something other than "video".
     
    230233== Upgrade Notice ==
    231234
     235= 3.12 =
     236Fixed a bug where saving S3 link expiration time would not get saved if units were set in seconds.
     237
    232238= 3.11 =
    233239Fixed custom short code setting so that it can be properly set to something other than "video". Trimmed S3 setting strings to prevent a hard to track down key inconsistency that can arise from copy and pasting values.
  • secure-html5-video-player/trunk/secure-html5-video-player.php

    r1066668 r1067714  
    55Description: Secure HTML5 Video Player allows you to play HTML5 video on modern browsers. Videos can be served privately; pseudo-streamed from a secured directory or via S3.
    66Author: Lucinda Brown, Jinsoo Kang
    7 Version: 3.11
     7Version: 3.12
    88Author URI: http://www.trillamar.com/
    99License: GPLv3
  • secure-html5-video-player/trunk/sh5vp-functions.php

    r1066668 r1067714  
    3434    else if ($secure_html5_video_player_s3_link_expire_units == 'minutes') {
    3535        $retval = $secure_html5_video_player_s3_link_expire * 60;
     36    }
     37    else {
     38        $retval = $secure_html5_video_player_s3_link_expire;
    3639    }
    3740    $retval = intval(abs(round($retval)));
Note: See TracChangeset for help on using the changeset viewer.