Plugin Directory

Changeset 948860


Ignore:
Timestamp:
07/15/2014 02:52:31 PM (12 years ago)
Author:
cmstactics
Message:

Fixed issue with frontend uploader settings.

Location:
wp-video-posts/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-video-posts/trunk/readme.txt

    r920053 r948860  
    134134
    135135== Changelog ==
     136= 3.1.5 =
     137- Bug fixing for front end uploader.
     138
    136139= 3.1.4 =
    137140- Bug fixing. Important to update.
  • wp-video-posts/trunk/wpvp.php

    r920053 r948860  
    44Plugin URI: http://cmstactics.com
    55Description: 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.4
     6Version: 3.1.5
    77Author: Alex Rayan, cmstactics
    88Author URI: http://cmstactics.com
     
    2424    * @var string WPVPMediaEncoder version
    2525    */
    26     public $version = '3.1.4';
     26    public $version = '3.1.5';
    2727    public static function init(){
    2828        $class = __CLASS__;
     
    408408                    'type'=>''
    409409            ),$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);
    411413            $embedCode = $newDisplay->wpvp_video_embed($video_code, $width, $height, $type);
    412414            return $embedCode;
     
    419421            extract(shortcode_atts(array(
    420422            ),$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);
    422426            $uploader = $newMedia->wpvp_front_video_uploader();
    423427            return $uploader;
     
    430434            extract(shortcode_atts(array(
    431435            ),$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);
    433439            $editor = $newMedia->wpvp_front_video_editor();
    434440            return $editor;
Note: See TracChangeset for help on using the changeset viewer.