Changeset 948860
- Timestamp:
- 07/15/2014 02:52:31 PM (12 years ago)
- Location:
- wp-video-posts/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wpvp.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-video-posts/trunk/readme.txt
r920053 r948860 134 134 135 135 == Changelog == 136 = 3.1.5 = 137 - Bug fixing for front end uploader. 138 136 139 = 3.1.4 = 137 140 - Bug fixing. Important to update. -
wp-video-posts/trunk/wpvp.php
r920053 r948860 4 4 Plugin URI: http://cmstactics.com 5 5 Description: WP Video Posts creates a custom post for uploaded videos. You can upload videos of different formats (FLV, F4V, MP4, AVI, MOV, 3GP and WMV) and the plugin will convert it to MP4 and play it using Flowplayer. 6 Version: 3.1. 46 Version: 3.1.5 7 7 Author: Alex Rayan, cmstactics 8 8 Author URI: http://cmstactics.com … … 24 24 * @var string WPVPMediaEncoder version 25 25 */ 26 public $version = '3.1. 4';26 public $version = '3.1.5'; 27 27 public static function init(){ 28 28 $class = __CLASS__; … … 408 408 'type'=>'' 409 409 ),$atts)); 410 $newDisplay = new WPVP_Encode_Media(); 410 $helper = new WPVP_Helper(); 411 $options = $helper->wpvp_get_full_options(); 412 $newDisplay = new WPVP_Encode_Media($options); 411 413 $embedCode = $newDisplay->wpvp_video_embed($video_code, $width, $height, $type); 412 414 return $embedCode; … … 419 421 extract(shortcode_atts(array( 420 422 ),$atts)); 421 $newMedia = new WPVP_Encode_Media(); 423 $helper = new WPVP_Helper(); 424 $options = $helper->wpvp_get_full_options(); 425 $newMedia = new WPVP_Encode_Media($options); 422 426 $uploader = $newMedia->wpvp_front_video_uploader(); 423 427 return $uploader; … … 430 434 extract(shortcode_atts(array( 431 435 ),$atts)); 432 $newMedia = new WPVP_Encode_Media(); 436 $helper = new WPVP_Helper(); 437 $options = $helper->wpvp_get_full_options(); 438 $newMedia = new WPVP_Encode_Media($options); 433 439 $editor = $newMedia->wpvp_front_video_editor(); 434 440 return $editor;
Note: See TracChangeset
for help on using the changeset viewer.