Changeset 2458457
- Timestamp:
- 01/18/2021 06:19:34 PM (5 years ago)
- Location:
- animated-typing-effect/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (1 diff)
-
typingeffect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
animated-typing-effect/trunk/README.txt
r2458319 r2458457 50 50 == Changelog == 51 51 52 = 1.3.4 = 53 * Bug fix which caused HTML elements to be escaped. This bug occured in the 1.3.3 release. 54 52 55 = 1.3.3 = 53 56 * Tested with WordPress v5.6 -
animated-typing-effect/trunk/typingeffect.php
r2458319 r2458457 2 2 /** 3 3 * Plugin Name: Typing Effect 4 * Version: 1.3. 34 * Version: 1.3.4 5 5 * Plugin URI: http://93digital.co.uk/ 6 6 * Description: Animated typing effect plugin, allowing you to generate a shortcode that 'types' out words on your page or post. Based on Typed.js by Matt Boldt. … … 97 97 foreach( $atts as $key => $value ) { 98 98 $key = isset( $params[ $key ] ) ? $params[$key] : $key; 99 $span .= " data-{$key}=\"" . htmlspecialchars( $value ). '"';99 $span .= " data-{$key}=\"" . $value . '"'; 100 100 } 101 101
Note: See TracChangeset
for help on using the changeset viewer.