Plugin Directory

Changeset 2879760


Ignore:
Timestamp:
03/14/2023 12:11:27 PM (3 years ago)
Author:
mekshq
Message:

1.0.10 version

Location:
meks-video-importer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • meks-video-importer/trunk/meks-video-importer.php

    r2463465 r2879760  
    33Plugin Name: Meks Video Importer
    44Description: Easily import YouTube and Vimeo videos in bulk to your posts, pages or any custom post type.
    5 Version: 1.0.9
     5Version: 1.0.10
    66Author: Meks
    77Author URI: http://mekshq.com
     
    1919 * Define useful constants here
    2020 */
    21 define( 'MEKS_VIDEO_IMPORTER_VERSION', '1.0.9' );
     21define( 'MEKS_VIDEO_IMPORTER_VERSION', '1.0.10' );
    2222define( 'MEKS_VIDEO_IMPORTER_BASENAME', plugin_basename(__FILE__) );
    2323define( 'MEKS_VIDEO_IMPORTER_DIR', plugin_dir_path( __FILE__ ) );
  • meks-video-importer/trunk/partials/import.php

    r2022010 r2879760  
    105105        foreach ($post_types as $post_type) :
    106106            if ($post_type->taxonomies):
     107                //print_r( $post_type->taxonomies );
    107108                $saved_taxonomies = $import_options['mvi-taxonomies'];
    108109                foreach ($post_type->taxonomies as $taxonomy) :
     110
     111                    if( !is_array($taxonomy) ){
     112                        continue;
     113                    }
     114
    109115                    ?>
    110116                    <tr class="form-field mvi-<?php echo esc_attr($taxonomy['id']); ?> <?php echo esc_attr($post_type->name)?> type-change post-type <?php echo esc_attr(meks_video_importer_taxonomy_classes($post_type)); ?>">
  • meks-video-importer/trunk/readme.txt

    r2871668 r2879760  
    55Requires at least: 3.7
    66Tested up to: 6.1
    7 Stable tag: 1.0.9
     7Stable tag: 1.0.10
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    4646
    4747== Changelog ==
     48
     49= 1.0.10 =
    4850
    4951* Improved: PHP 8 compatibility tweaks
Note: See TracChangeset for help on using the changeset viewer.