Changeset 3363037
- Timestamp:
- 09/17/2025 09:32:06 AM (7 months ago)
- Location:
- puzzleme
- Files:
-
- 3 added
- 2 edited
-
tags/1.2.2 (added)
-
tags/1.2.2/puzzleme.php (added)
-
tags/1.2.2/readme.txt (added)
-
trunk/puzzleme.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
puzzleme/trunk/puzzleme.php
r3352423 r3363037 2 2 /* 3 3 Plugin Name: PuzzleMe for WordPress 4 Version: 1.2. 14 Version: 1.2.2 5 5 Description: Embed PuzzleMe puzzles in your posts and pages with a shortcode 6 6 Author: Amuse Labs … … 67 67 ) 68 68 ); 69 70 $attributionHTMLTags = array( 71 'a' => array( 72 'href' => true, 73 'target' => true, 74 'style' => true 75 ) 76 ); 69 77 70 78 $valid_embed_types = array('crossword', 'sudoku', 'wordsearch', 'quiz', 'krisskross', 'wordf', 'codeword', 'wordrow', 'jigsaw', 'date-picker'); … … 116 124 } 117 125 if (isset($attributes['attribution'])) { 118 $embed_variables['$attribution_text'] = esc_html($attributes['attribution']);126 $embed_variables['$attribution_text'] = wp_kses($attributes['attribution'], $attributionHTMLTags); 119 127 return wp_kses(strtr($embed_html_attributions, $embed_variables), $allowedHTMLtags); 120 128 } else { -
puzzleme/trunk/readme.txt
r3352423 r3363037 4 4 Requires at least: 3.9 5 5 Tested up to: 6.8.2 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.