Plugin Directory

Changeset 2482210


Ignore:
Timestamp:
02/26/2021 01:49:30 PM (5 years ago)
Author:
karlogitlea
Message:

Fixed minor error

Location:
miqid-elementor/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • miqid-elementor/trunk/miqid-elementor.php

    r2480511 r2482210  
    44 * Plugin Name:       MIQID-Elementor
    55 * Description:       MIQID-Elementor extend Elementor with MIQID data.
    6  * Version:           1.6.0
     6 * Version:           1.6.1
    77 * Requires at least: 5.2
    88 * Requires PHP:      7.2
     
    2424
    2525class Elementor {
    26     const VERSION                   = "1.6";
     26    const VERSION                   = "1.6.1";
    2727    const MINIMUM_ELEMENTOR_VERSION = "2.0.0";
    2828    const MINIMUM_PHP_VERSION       = "7.2";
  • miqid-elementor/trunk/readme.md

    r2480511 r2482210  
    44Tested up to: 5.6 
    55Requires PHP: 7.2 
    6 Stable tag: 1.6.0 
     6Stable tag: 1.6.1 
    77License: GPL v3 or later 
    88
  • miqid-elementor/trunk/widget/input.php

    r2480511 r2482210  
    275275        $this->add_render_attribute( 'input', 'type', $type );
    276276        $this->add_render_attribute( 'input', 'name', sprintf( '[%s]', implode( '][', $field ) ) );
    277         $value = do_shortcode( sprintf( '[miqid-%s fields="%s"]', mb_strtolower( array_shift( $miqid ) ), array_shift( $miqid ) ) );
     277        $value = do_shortcode( sprintf( '[miqid-%s fields="%s"]', mb_strtolower( array_shift( $field ) ), array_shift( $field ) ) );
    278278        $this->add_render_attribute( 'input', 'value', $value );
    279279
Note: See TracChangeset for help on using the changeset viewer.