Changeset 2551560
- Timestamp:
- 06/21/2021 06:22:44 PM (5 years ago)
- Location:
- mylisting-elementor-toolkit
- Files:
-
- 2 added
- 2 deleted
- 6 edited
- 1 copied
-
tags/1.0.13 (copied) (copied from mylisting-elementor-toolkit/trunk)
-
tags/1.0.13/.gitattributes (deleted)
-
tags/1.0.13/dynamic-tags/tags/field.php (modified) (1 diff)
-
tags/1.0.13/dynamic-tags/tags/wp-editor.php (added)
-
tags/1.0.13/ml-elementor-toolkit.php (modified) (2 diffs)
-
tags/1.0.13/readme.txt (modified) (1 diff)
-
trunk/.gitattributes (deleted)
-
trunk/dynamic-tags/tags/field.php (modified) (1 diff)
-
trunk/dynamic-tags/tags/wp-editor.php (added)
-
trunk/ml-elementor-toolkit.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mylisting-elementor-toolkit/tags/1.0.13/dynamic-tags/tags/field.php
r2539428 r2551560 92 92 $value = get_post_meta( get_the_ID(), '_'.$field_name, true ); 93 93 $value = is_array($value) ? implode(', ', $value) : $value; 94 $value = nl2br(wp_kses_post( $value ));94 $value = wp_kses( nl2br( $value ), ['br' => []] ); 95 95 } 96 96 -
mylisting-elementor-toolkit/tags/1.0.13/ml-elementor-toolkit.php
r2539428 r2551560 4 4 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme. 5 5 * Plugin URI: https://yellowwave.eu/ml-elementor-toolkit 6 * Version: 1.0.1 26 * Version: 1.0.13 7 7 * Author: YellowWave 8 8 * Author URI: https://yellowwave.nl … … 33 33 * @var string The plugin version. 34 34 */ 35 const VERSION = '1.0.1 2';35 const VERSION = '1.0.13'; 36 36 37 37 /** -
mylisting-elementor-toolkit/tags/1.0.13/readme.txt
r2539428 r2551560 64 64 == Changelog == 65 65 66 = 1.0.13 = 67 * Separate WP Editor field with better support for html, fixes formatting issues. 68 66 69 = 1.0.12 = 67 70 * Number tag: Fallback fix -
mylisting-elementor-toolkit/trunk/dynamic-tags/tags/field.php
r2539428 r2551560 92 92 $value = get_post_meta( get_the_ID(), '_'.$field_name, true ); 93 93 $value = is_array($value) ? implode(', ', $value) : $value; 94 $value = nl2br(wp_kses_post( $value ));94 $value = wp_kses( nl2br( $value ), ['br' => []] ); 95 95 } 96 96 -
mylisting-elementor-toolkit/trunk/ml-elementor-toolkit.php
r2539428 r2551560 4 4 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme. 5 5 * Plugin URI: https://yellowwave.eu/ml-elementor-toolkit 6 * Version: 1.0.1 26 * Version: 1.0.13 7 7 * Author: YellowWave 8 8 * Author URI: https://yellowwave.nl … … 33 33 * @var string The plugin version. 34 34 */ 35 const VERSION = '1.0.1 2';35 const VERSION = '1.0.13'; 36 36 37 37 /** -
mylisting-elementor-toolkit/trunk/readme.txt
r2539428 r2551560 64 64 == Changelog == 65 65 66 = 1.0.13 = 67 * Separate WP Editor field with better support for html, fixes formatting issues. 68 66 69 = 1.0.12 = 67 70 * Number tag: Fallback fix
Note: See TracChangeset
for help on using the changeset viewer.