Changeset 3057066
- Timestamp:
- 03/22/2024 08:03:36 PM (21 months ago)
- Location:
- lightweight-accordion
- Files:
-
- 15 added
- 2 edited
-
tags/1.5.17 (added)
-
tags/1.5.17/block.json (added)
-
tags/1.5.17/build (added)
-
tags/1.5.17/build/index.asset.php (added)
-
tags/1.5.17/build/index.js (added)
-
tags/1.5.17/css (added)
-
tags/1.5.17/css/editor-styles.css (added)
-
tags/1.5.17/css/lightweight-accordion.css (added)
-
tags/1.5.17/css/min (added)
-
tags/1.5.17/css/min/editor-styles.min.css (added)
-
tags/1.5.17/css/min/lightweight-accordion.min.css (added)
-
tags/1.5.17/index.php (added)
-
tags/1.5.17/lightweight-accordion.php (added)
-
tags/1.5.17/readme.txt (added)
-
tags/1.5.17/wpml-config.xml (added)
-
trunk/lightweight-accordion.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lightweight-accordion/trunk/lightweight-accordion.php
r3056945 r3057066 4 4 * Plugin URI: https://smartwp.co/lightweight-accordion 5 5 * Description: Extremely simple accordion for adding collapse elements to pages without affecting page load time. Works for Classic Editor via shortcode and Gutenberg via Block. 6 * Version: 1.5.1 76 * Version: 1.5.18 7 7 * Text Domain: lightweight-accordion 8 8 * Author: Andy Feliciotti … … 151 151 } 152 152 153 $title = isset( $options['title'] ) ? esc_html( $options['title'] ) : '';153 $title = isset( $options['title'] ) ? wp_kses_post( $options['title'] ) : ''; 154 154 $title_tag = isset( $options['title_tag'] ) ? sanitize_html_class( $options['title_tag'] ) : 'h3'; 155 155 $sanitized_content = wp_kses_post( $content ); -
lightweight-accordion/trunk/readme.txt
r3056948 r3057066 6 6 Tested up to: 6.5 7 7 Requires PHP: 7.0 8 Stable tag: 1.5.1 78 Stable tag: 1.5.18 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl.html … … 100 100 == Changelog == 101 101 102 = 1.5.18 = 103 * Bug fix for sanatizing titles. 104 102 105 = 1.5.17 = 103 106 * Tested up to WordPress 6.5.
Note: See TracChangeset
for help on using the changeset viewer.