Plugin Directory

Changeset 901149


Ignore:
Timestamp:
04/23/2014 06:08:59 PM (12 years ago)
Author:
cmstactics
Message:

Fixed typos from previous update.

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

Legend:

Unmodified
Added
Removed
  • wp-video-posts/trunk/classes/wpvp-helper-class.php

    r900625 r901149  
    2424            if(file_exists($source.'.jpg'))
    2525                unlink($source.'.jpg');
     26            $dir = plugin_dir_path( __FILE__ ).'test';
     27            if (!is_dir($dir)):
     28                chmod($dir, 0777);
     29            endif;
    2630            $str = $ffmpeg_path."ffmpeg -y -i ".$source." ". $extra ." ".$source.'.jpg';
    2731            exec($str);
  • wp-video-posts/trunk/readme.txt

    r900625 r901149  
    134134
    135135== Changelog ==
     136= 3.1.1 =
     137- Typo fix.
     138- Added permission check on test directory within the plugin.
     139
    136140= 3.1 =
    137141- Multisite bug fix for uploaded media location.
  • wp-video-posts/trunk/wpvp.php

    r900625 r901149  
    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
     6Version: 3.1.1
    77Author: Alex Rayan, cmstactics
    88Author URI: http://cmstactics.com
     
    2424    * @var string WPVPMediaEncoder version
    2525    */
    26     public $version = '3.1';
     26    public $version = '3.1.1';
    2727    public static function init(){
    2828        $class = __CLASS__;
     
    464464    public function wpvp_check_ffmpeg_callback(){
    465465        $helper = new WPVP_Helper();
    466         $ffmpeg = $helper->wpvp_command_exists_check($command,true);
     466        $ffmpeg = $helper->wpvp_command_exists_check('ffmpeg',true);
    467467        if($ffmpeg)
    468468            echo '<span class="true">FOUND</span>';
Note: See TracChangeset for help on using the changeset viewer.