Changeset 2458319
- Timestamp:
- 01/18/2021 02:34:28 PM (5 years ago)
- Location:
- animated-typing-effect/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
typingeffect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
animated-typing-effect/trunk/README.txt
r2314631 r2458319 3 3 Tags: animated typing effect, typewriter effect, typing effect plugin 4 4 Requires at least: 3.5 5 Tested up to: 5. 4.15 Tested up to: 5.6 6 6 Stable tag: trunk 7 7 License: GPL v3 … … 50 50 == Changelog == 51 51 52 = 1.3.3 = 53 * Tested with WordPress v5.6 54 52 55 = 1.3.2 = 53 56 * Tested with WordPress v5.4.1 -
animated-typing-effect/trunk/typingeffect.php
r2314631 r2458319 2 2 /** 3 3 * Plugin Name: Typing Effect 4 * Version: 1.3. 24 * Version: 1.3.3 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}=\"" . $value. '"';99 $span .= " data-{$key}=\"" . htmlspecialchars( $value ) . '"'; 100 100 } 101 101
Note: See TracChangeset
for help on using the changeset viewer.