Plugin Directory

Changeset 523474


Ignore:
Timestamp:
03/25/2012 07:23:54 PM (14 years ago)
Author:
nickohrn
Message:

Fixed bug per http://wordpress.org/support/topic/plugin-web-fonts-google-web-fonts-style-declarations-typo?replies=2#post-2711411

Location:
web-fonts/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • web-fonts/trunk/modules/google-web-fonts/google-web-fonts.php

    r512491 r523474  
    282282                        $font = $font_data[$selector['font-id']];
    283283                       
    284                         printf('%s{font-family: "%s"%s; font-style: %s, font-weight: %d}', $selector['tag'], esc_attr($font['family']), empty($selector['fallback']) ? '' : ',' . esc_attr($selector['fallback']), $font['style'], $font['weight']);
     284                        printf('%s{font-family: "%s"%s; font-style: %s; font-weight: %d}', $selector['tag'], esc_attr($font['family']), empty($selector['fallback']) ? '' : ',' . esc_attr($selector['fallback']), $font['style'], $font['weight']);
    285285                    }
    286286                }
  • web-fonts/trunk/readme.txt

    r523469 r523474  
    9393== Changelog ==
    9494
    95 = 1.1.3 =
     95= 1.1.5 =
     96* Fixed Google Web Fonts CSS declaration per
     97
     98= 1.1.4 =
    9699* Added web fonts icon designed and built by R. York Funston (http://www.ryarts.com/)
    97100
  • web-fonts/trunk/web-fonts.php

    r523469 r523474  
    44 Plugin URI: http://webfonts.fonts.com
    55 Description: The canonical Web Fonts plugin for WordPress. This plugin includes support for Fonts.com and Google web fonts and supports a variety of web font providers via an easy to implement plugin architecture.
    6  Version: 1.1.3
     6 Version: 1.1.5
    77 Author: Nick Ohrn of Plugin-Developer.com
    88 Author URI: http://plugin-developer.com/
     
    1414       
    1515        //// VERSION
    16         const VERSION = '1.1.3';
     16        const VERSION = '1.1.5';
    1717       
    1818        //// KEYS
Note: See TracChangeset for help on using the changeset viewer.