Changeset 523474
- Timestamp:
- 03/25/2012 07:23:54 PM (14 years ago)
- Location:
- web-fonts/trunk
- Files:
-
- 3 edited
-
modules/google-web-fonts/google-web-fonts.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
web-fonts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
web-fonts/trunk/modules/google-web-fonts/google-web-fonts.php
r512491 r523474 282 282 $font = $font_data[$selector['font-id']]; 283 283 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']); 285 285 } 286 286 } -
web-fonts/trunk/readme.txt
r523469 r523474 93 93 == Changelog == 94 94 95 = 1.1.3 = 95 = 1.1.5 = 96 * Fixed Google Web Fonts CSS declaration per 97 98 = 1.1.4 = 96 99 * Added web fonts icon designed and built by R. York Funston (http://www.ryarts.com/) 97 100 -
web-fonts/trunk/web-fonts.php
r523469 r523474 4 4 Plugin URI: http://webfonts.fonts.com 5 5 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. 36 Version: 1.1.5 7 7 Author: Nick Ohrn of Plugin-Developer.com 8 8 Author URI: http://plugin-developer.com/ … … 14 14 15 15 //// VERSION 16 const VERSION = '1.1. 3';16 const VERSION = '1.1.5'; 17 17 18 18 //// KEYS
Note: See TracChangeset
for help on using the changeset viewer.