Plugin Directory

Changeset 2551560


Ignore:
Timestamp:
06/21/2021 06:22:44 PM (5 years ago)
Author:
cvl01
Message:

Update to version 1.0.13 from GitHub

Location:
mylisting-elementor-toolkit
Files:
2 added
2 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • mylisting-elementor-toolkit/tags/1.0.13/dynamic-tags/tags/field.php

    r2539428 r2551560  
    9292            $value = get_post_meta( get_the_ID(), '_'.$field_name, true );
    9393            $value = is_array($value) ? implode(', ', $value) : $value;
    94             $value = nl2br(wp_kses_post( $value ));
     94            $value =  wp_kses( nl2br( $value ), ['br' => []] );
    9595        }
    9696
  • mylisting-elementor-toolkit/tags/1.0.13/ml-elementor-toolkit.php

    r2539428 r2551560  
    44 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme.
    55 * Plugin URI:  https://yellowwave.eu/ml-elementor-toolkit
    6  * Version:     1.0.12
     6 * Version:     1.0.13
    77 * Author:      YellowWave
    88 * Author URI:  https://yellowwave.nl
     
    3333   * @var string The plugin version.
    3434   */
    35     const VERSION = '1.0.12';
     35    const VERSION = '1.0.13';
    3636 
    3737    /**
  • mylisting-elementor-toolkit/tags/1.0.13/readme.txt

    r2539428 r2551560  
    6464== Changelog ==
    6565
     66= 1.0.13 =
     67* Separate WP Editor field with better support for html, fixes formatting issues.
     68
    6669= 1.0.12 =
    6770* Number tag: Fallback fix
  • mylisting-elementor-toolkit/trunk/dynamic-tags/tags/field.php

    r2539428 r2551560  
    9292            $value = get_post_meta( get_the_ID(), '_'.$field_name, true );
    9393            $value = is_array($value) ? implode(', ', $value) : $value;
    94             $value = nl2br(wp_kses_post( $value ));
     94            $value =  wp_kses( nl2br( $value ), ['br' => []] );
    9595        }
    9696
  • mylisting-elementor-toolkit/trunk/ml-elementor-toolkit.php

    r2539428 r2551560  
    44 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme.
    55 * Plugin URI:  https://yellowwave.eu/ml-elementor-toolkit
    6  * Version:     1.0.12
     6 * Version:     1.0.13
    77 * Author:      YellowWave
    88 * Author URI:  https://yellowwave.nl
     
    3333   * @var string The plugin version.
    3434   */
    35     const VERSION = '1.0.12';
     35    const VERSION = '1.0.13';
    3636 
    3737    /**
  • mylisting-elementor-toolkit/trunk/readme.txt

    r2539428 r2551560  
    6464== Changelog ==
    6565
     66= 1.0.13 =
     67* Separate WP Editor field with better support for html, fixes formatting issues.
     68
    6669= 1.0.12 =
    6770* Number tag: Fallback fix
Note: See TracChangeset for help on using the changeset viewer.