Plugin Directory

Changeset 729474


Ignore:
Timestamp:
06/21/2013 04:27:20 PM (13 years ago)
Author:
ItayXD
Message:

v1.1 Bug fix - fixed problem when using '.

Location:
responsive-mobile-friendly-tooltip
Files:
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • responsive-mobile-friendly-tooltip/tags/1.1/readme.txt

    r713518 r729474  
    44Requires at least: 3.0.1
    55Tested up to: 3.5.1
    6 Stable tag: 1.0
     6Stable tag: 1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444== Changelog ==
    4545
     46= 1.1 =
     47*   Bug fix - fixed problem when using '.
     48
    4649= 1.0 =
    4750*   Adds CSS editor and style options (image in tooltip coming soon).
  • responsive-mobile-friendly-tooltip/tags/1.1/responsive-tooltip.php

    r713525 r729474  
    44   Plugin URI: https://github.com/ItayXD/responsive-tooltip
    55   Description: Responsive and mobile-friendly tooltip to present tiny amount of hidden content - the tip.
    6    Version: 1.0
     6   Version: 1.1
    77   Author: ItayXD; Osvaldas;
    88   Author URI: itayxd.com
     
    1818     ), $atts));
    1919    if ($content && $tip) {
    20         $return = "<abbr title='".$tip."' rel='tooltip'>".$content."</abbr>";
     20        $return = "<abbr title='".esc_attr( $tip )."' rel='tooltip'>".$content."</abbr>";
    2121        return $return;
    2222    }
  • responsive-mobile-friendly-tooltip/trunk/readme.txt

    r713518 r729474  
    44Requires at least: 3.0.1
    55Tested up to: 3.5.1
    6 Stable tag: 1.0
     6Stable tag: 1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444== Changelog ==
    4545
     46= 1.1 =
     47*   Bug fix - fixed problem when using '.
     48
    4649= 1.0 =
    4750*   Adds CSS editor and style options (image in tooltip coming soon).
  • responsive-mobile-friendly-tooltip/trunk/responsive-tooltip.php

    r713525 r729474  
    44   Plugin URI: https://github.com/ItayXD/responsive-tooltip
    55   Description: Responsive and mobile-friendly tooltip to present tiny amount of hidden content - the tip.
    6    Version: 1.0
     6   Version: 1.1
    77   Author: ItayXD; Osvaldas;
    88   Author URI: itayxd.com
     
    1818     ), $atts));
    1919    if ($content && $tip) {
    20         $return = "<abbr title='".$tip."' rel='tooltip'>".$content."</abbr>";
     20        $return = "<abbr title='".esc_attr( $tip )."' rel='tooltip'>".$content."</abbr>";
    2121        return $return;
    2222    }
Note: See TracChangeset for help on using the changeset viewer.