Changeset 2768400
- Timestamp:
- 08/09/2022 01:58:20 PM (4 years ago)
- Location:
- solid-dynamics
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.2 (copied) (copied from solid-dynamics/trunk)
-
tags/1.1.2/classes/custom-callback.php (modified) (1 diff)
-
tags/1.1.2/classes/menu.php (modified) (1 diff)
-
tags/1.1.2/classes/parent-meta.php (modified) (1 diff)
-
tags/1.1.2/readme.txt (modified) (2 diffs)
-
tags/1.1.2/solid-dynamics.php (modified) (1 diff)
-
trunk/classes/custom-callback.php (modified) (1 diff)
-
trunk/classes/menu.php (modified) (1 diff)
-
trunk/classes/parent-meta.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/solid-dynamics.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solid-dynamics/tags/1.1.2/classes/custom-callback.php
r2549880 r2768400 38 38 39 39 if (is_callable($callback)) { 40 echo esc_html($callback($post));40 echo wp_kses_post($callback($post)); 41 41 } 42 42 } -
solid-dynamics/tags/1.1.2/classes/menu.php
r2694533 r2768400 105 105 $ids = wp_list_pluck( $items, 'object_id' ); 106 106 107 echo join(',', $ids);107 echo esc_html(join(',', $ids)); 108 108 } 109 109 } -
solid-dynamics/tags/1.1.2/classes/parent-meta.php
r2549880 r2768400 103 103 $current = get_post(); 104 104 if ($current && $parent = get_post_parent($current)) { 105 echo esc_html(implode(",", get_post_meta($parent->ID, $meta_key)));105 echo wp_kses_post(implode(",", get_post_meta($parent->ID, $meta_key))); 106 106 } 107 107 } -
solid-dynamics/tags/1.1.2/readme.txt
r2694536 r2768400 2 2 Contributors: soliddigital,lukechinworth,peterajtai 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 Tested up to: 5.9.25 Stable tag: 1.1. 14 Tested up to: 6.0 5 Stable tag: 1.1.2 6 6 License: GPLv2 7 7 … … 31 31 == Changelog == 32 32 33 = 1.1.2 = 34 * Escape custom callback output with wp_kses_post since it could include html. 35 * Escape the menu output with esc_html since it should only be comma-separated ids. 36 37 = 1.1.0 = 38 * Add menu dynamic tag. 39 33 40 = 1.0.0 = 34 41 * Inital release -
solid-dynamics/tags/1.1.2/solid-dynamics.php
r2694536 r2768400 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Custom callbacks for elementor dynamic tags and jet engine macros. 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com -
solid-dynamics/trunk/classes/custom-callback.php
r2549880 r2768400 38 38 39 39 if (is_callable($callback)) { 40 echo esc_html($callback($post));40 echo wp_kses_post($callback($post)); 41 41 } 42 42 } -
solid-dynamics/trunk/classes/menu.php
r2694533 r2768400 105 105 $ids = wp_list_pluck( $items, 'object_id' ); 106 106 107 echo join(',', $ids);107 echo esc_html(join(',', $ids)); 108 108 } 109 109 } -
solid-dynamics/trunk/classes/parent-meta.php
r2549880 r2768400 103 103 $current = get_post(); 104 104 if ($current && $parent = get_post_parent($current)) { 105 echo esc_html(implode(",", get_post_meta($parent->ID, $meta_key)));105 echo wp_kses_post(implode(",", get_post_meta($parent->ID, $meta_key))); 106 106 } 107 107 } -
solid-dynamics/trunk/readme.txt
r2694536 r2768400 2 2 Contributors: soliddigital,lukechinworth,peterajtai 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 Tested up to: 5.9.25 Stable tag: 1.1. 14 Tested up to: 6.0 5 Stable tag: 1.1.2 6 6 License: GPLv2 7 7 … … 31 31 == Changelog == 32 32 33 = 1.1.2 = 34 * Escape custom callback output with wp_kses_post since it could include html. 35 * Escape the menu output with esc_html since it should only be comma-separated ids. 36 37 = 1.1.0 = 38 * Add menu dynamic tag. 39 33 40 = 1.0.0 = 34 41 * Inital release -
solid-dynamics/trunk/solid-dynamics.php
r2694536 r2768400 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Custom callbacks for elementor dynamic tags and jet engine macros. 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com
Note: See TracChangeset
for help on using the changeset viewer.