Plugin Directory

Changeset 2768400


Ignore:
Timestamp:
08/09/2022 01:58:20 PM (4 years ago)
Author:
soliddigital
Message:

Update to version 1.1.2 from GitHub

Location:
solid-dynamics
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solid-dynamics/tags/1.1.2/classes/custom-callback.php

    r2549880 r2768400  
    3838
    3939      if (is_callable($callback)) {
    40           echo esc_html($callback($post));
     40          echo wp_kses_post($callback($post));
    4141      }
    4242  }
  • solid-dynamics/tags/1.1.2/classes/menu.php

    r2694533 r2768400  
    105105        $ids = wp_list_pluck( $items, 'object_id' );
    106106
    107         echo join(',', $ids);
     107        echo esc_html(join(',', $ids));
    108108    }
    109109}
  • solid-dynamics/tags/1.1.2/classes/parent-meta.php

    r2549880 r2768400  
    103103        $current = get_post();
    104104        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)));
    106106        }
    107107    }
  • solid-dynamics/tags/1.1.2/readme.txt

    r2694536 r2768400  
    22Contributors: soliddigital,lukechinworth,peterajtai
    33Tags: elementor, dynamic tags, jet engine, macros
    4 Tested up to: 5.9.2
    5 Stable tag: 1.1.1
     4Tested up to: 6.0
     5Stable tag: 1.1.2
    66License: GPLv2
    77
     
    3131== Changelog ==
    3232
     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
    3340= 1.0.0 =
    3441* Inital release
  • solid-dynamics/tags/1.1.2/solid-dynamics.php

    r2694536 r2768400  
    44 * Plugin Name:       Solid Dynamics
    55 * Description:       Custom callbacks for elementor dynamic tags and jet engine macros.
    6  * Version:           1.1.1
     6 * Version:           1.1.2
    77 * Author:            Solid Digital
    88 * Author URI:        https://www.soliddigital.com
  • solid-dynamics/trunk/classes/custom-callback.php

    r2549880 r2768400  
    3838
    3939      if (is_callable($callback)) {
    40           echo esc_html($callback($post));
     40          echo wp_kses_post($callback($post));
    4141      }
    4242  }
  • solid-dynamics/trunk/classes/menu.php

    r2694533 r2768400  
    105105        $ids = wp_list_pluck( $items, 'object_id' );
    106106
    107         echo join(',', $ids);
     107        echo esc_html(join(',', $ids));
    108108    }
    109109}
  • solid-dynamics/trunk/classes/parent-meta.php

    r2549880 r2768400  
    103103        $current = get_post();
    104104        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)));
    106106        }
    107107    }
  • solid-dynamics/trunk/readme.txt

    r2694536 r2768400  
    22Contributors: soliddigital,lukechinworth,peterajtai
    33Tags: elementor, dynamic tags, jet engine, macros
    4 Tested up to: 5.9.2
    5 Stable tag: 1.1.1
     4Tested up to: 6.0
     5Stable tag: 1.1.2
    66License: GPLv2
    77
     
    3131== Changelog ==
    3232
     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
    3340= 1.0.0 =
    3441* Inital release
  • solid-dynamics/trunk/solid-dynamics.php

    r2694536 r2768400  
    44 * Plugin Name:       Solid Dynamics
    55 * Description:       Custom callbacks for elementor dynamic tags and jet engine macros.
    6  * Version:           1.1.1
     6 * Version:           1.1.2
    77 * Author:            Solid Digital
    88 * Author URI:        https://www.soliddigital.com
Note: See TracChangeset for help on using the changeset viewer.