Changeset 1067714
- Timestamp:
- 01/14/2015 07:58:33 AM (11 years ago)
- Location:
- secure-html5-video-player/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
secure-html5-video-player.php (modified) (1 diff)
-
sh5vp-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
secure-html5-video-player/trunk/readme.txt
r1066668 r1067714 4 4 Requires at least: 3.0 5 5 Tested up to: 4.1 6 Stable tag: 3.1 16 Stable tag: 3.12 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 128 128 == Changelog == 129 129 130 = 3.12 = 131 * Fixed a bug where saving S3 link expiration time would not get saved if units were set in seconds. 132 130 133 = 3.11 = 131 134 * Fixed custom short code setting so that it can be properly set to something other than "video". … … 230 233 == Upgrade Notice == 231 234 235 = 3.12 = 236 Fixed a bug where saving S3 link expiration time would not get saved if units were set in seconds. 237 232 238 = 3.11 = 233 239 Fixed 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 5 5 Description: 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. 6 6 Author: Lucinda Brown, Jinsoo Kang 7 Version: 3.1 17 Version: 3.12 8 8 Author URI: http://www.trillamar.com/ 9 9 License: GPLv3 -
secure-html5-video-player/trunk/sh5vp-functions.php
r1066668 r1067714 34 34 else if ($secure_html5_video_player_s3_link_expire_units == 'minutes') { 35 35 $retval = $secure_html5_video_player_s3_link_expire * 60; 36 } 37 else { 38 $retval = $secure_html5_video_player_s3_link_expire; 36 39 } 37 40 $retval = intval(abs(round($retval)));
Note: See TracChangeset
for help on using the changeset viewer.