Plugin Directory

Changeset 2458457


Ignore:
Timestamp:
01/18/2021 06:19:34 PM (5 years ago)
Author:
93digital
Message:

Bug fix which caused HTML elements to be escaped. This bug occured in the 1.3.3 release.

Location:
animated-typing-effect/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • animated-typing-effect/trunk/README.txt

    r2458319 r2458457  
    5050== Changelog ==
    5151
     52= 1.3.4 =
     53* Bug fix which caused HTML elements to be escaped. This bug occured in the 1.3.3 release.
     54
    5255= 1.3.3 =
    5356* Tested with WordPress v5.6
  • animated-typing-effect/trunk/typingeffect.php

    r2458319 r2458457  
    22/**
    33 * Plugin Name: Typing Effect
    4  * Version: 1.3.3
     4 * Version: 1.3.4
    55 * Plugin URI: http://93digital.co.uk/
    66 * 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.
     
    9797    foreach( $atts as $key => $value ) {
    9898      $key = isset( $params[ $key ] ) ? $params[$key] : $key;
    99       $span .= " data-{$key}=\"" . htmlspecialchars( $value ) . '"';
     99      $span .= " data-{$key}=\"" . $value . '"';
    100100    }
    101101
Note: See TracChangeset for help on using the changeset viewer.