Changeset 1066668
- Timestamp:
- 01/13/2015 05:16:47 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) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
secure-html5-video-player/trunk/readme.txt
r995516 r1066668 3 3 Tags: html5, video, player, secure, javascript, m4v, mp4, ogg, ogv, theora, webm, skins, media server, youtube, vimeo, amazon, s3 4 4 Requires at least: 3.0 5 Tested up to: 4. 06 Stable tag: 3.1 05 Tested up to: 4.1 6 Stable tag: 3.11 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 128 128 == Changelog == 129 129 130 = 3.11 = 131 * Fixed custom short code setting so that it can be properly set to something other than "video". 132 * Trimmed S3 setting strings to prevent a hard to track down key inconsistency that can arise from copy and pasting values. 133 130 134 = 3.10 = 131 135 * Fixed Settings links in plugin list to prevent spilling over to other plugin items. … … 226 230 == Upgrade Notice == 227 231 232 = 3.11 = 233 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. 234 228 235 = 3.10 = 229 236 Fixed Settings links in plugin list to prevent spilling over to other plugin items. -
secure-html5-video-player/trunk/secure-html5-video-player.php
r995516 r1066668 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 07 Version: 3.11 8 8 Author URI: http://www.trillamar.com/ 9 9 License: GPLv3 -
secure-html5-video-player/trunk/sh5vp-functions.php
r995516 r1066668 857 857 if ($new_video_shortcode == '') { 858 858 $new_video_shortcode = 'video'; 859 update_option('secure_html5_video_player_video_shortcode', $new_video_shortcode);860 }859 } 860 update_option('secure_html5_video_player_video_shortcode', $new_video_shortcode); 861 861 } 862 862 … … 927 927 } 928 928 if (isset($_REQUEST['secure_html5_video_player_s3_access_key'])) { 929 update_option('secure_html5_video_player_s3_access_key', $_REQUEST['secure_html5_video_player_s3_access_key']);929 update_option('secure_html5_video_player_s3_access_key', trim($_REQUEST['secure_html5_video_player_s3_access_key'])); 930 930 } 931 931 if (isset($_REQUEST['secure_html5_video_player_s3_secret_key'])) { 932 update_option('secure_html5_video_player_s3_secret_key', $_REQUEST['secure_html5_video_player_s3_secret_key']);932 update_option('secure_html5_video_player_s3_secret_key', trim($_REQUEST['secure_html5_video_player_s3_secret_key'])); 933 933 } 934 934 if (isset($_REQUEST['secure_html5_video_player_s3_server'])) { … … 942 942 } 943 943 if (isset($_REQUEST['secure_html5_video_player_s3_bucket'])) { 944 update_option('secure_html5_video_player_s3_bucket', $_REQUEST['secure_html5_video_player_s3_bucket']);944 update_option('secure_html5_video_player_s3_bucket', trim($_REQUEST['secure_html5_video_player_s3_bucket'])); 945 945 } 946 946 if (isset($_REQUEST['secure_html5_video_player_s3_video_dir'])) { 947 update_option('secure_html5_video_player_s3_video_dir', $_REQUEST['secure_html5_video_player_s3_video_dir']);947 update_option('secure_html5_video_player_s3_video_dir', trim($_REQUEST['secure_html5_video_player_s3_video_dir'])); 948 948 } 949 949
Note: See TracChangeset
for help on using the changeset viewer.