Plugin Directory

Changeset 1920326


Ignore:
Timestamp:
08/06/2018 10:42:28 AM (8 years ago)
Author:
velathemes
Message:

version 1.0.9

Location:
vela-companion/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • vela-companion/trunk/inc/templates-importer/templates-importer.php

    r1919706 r1920326  
    259259            }
    260260
    261         $template                  = download_url( esc_url( $template_url ) );
    262         $_FILES['file']['tmp_name'] = $template;
     261        $template_file = download_url( esc_url( $template_url ) );
     262        $_FILES['file']['tmp_name'] = $template_file;
    263263       
    264264        $pathinfo = pathinfo($template_url);
     
    266266        $elementor = new \Elementor\TemplateLibrary\Source_Local;
    267267
    268         $result = $elementor->import_template($pathinfo['basename'], $template);
    269         unlink( $template );
     268        $result = $elementor->import_template($pathinfo['basename'], $template_file);
     269        unlink( $template_file );
    270270
    271271        if(isset($result->template_id)){
  • vela-companion/trunk/readme.txt

    r1919706 r1920326  
    3333== Changelog ==
    3434
     35= 1.0.9 =
     36* Fixed templates importer issue.
     37
    3538= 1.0.8 =
    3639* Fixed undefined method for old elementor versions.
  • vela-companion/trunk/vela-companion.php

    r1919706 r1920326  
    55    Author: VelaThemes
    66    Author URI: https://velathemes.com/
    7     Version: 1.0.8
     7    Version: 1.0.9
    88    Text Domain: vela-companion
    99    Domain Path: /languages
     
    1414
    1515define( 'VELA_COMPANION_DIR',  plugin_dir_path( __FILE__ ) );
    16 define( 'VELA_COMPANION_VER',  '1.0.8' );
     16define( 'VELA_COMPANION_VER',  '1.0.9' );
    1717
    1818require_once 'inc/widget-recent-posts.php';
Note: See TracChangeset for help on using the changeset viewer.