Skip to content

Commit 855232e

Browse files
committed
Twenty Thirteen: Correct Genericons stylesheet version number.
In [28693], the Genericons stylesheet was updated to `3.0.3`, but the version was incorrectly indicated as `3.03`. See #39997. git-svn-id: https://develop.svn.wordpress.org/trunk@45212 602fd350-edb4-49c9-b593-d223f7449a82
1 parent aa377f5 commit 855232e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/wp-content/themes/twentythirteen/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ function twentythirteen_scripts_styles() {
278278
wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
279279

280280
// Add Genericons font, used in the main stylesheet.
281-
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' );
281+
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
282282

283283
// Loads our main stylesheet.
284284
wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2013-07-18' );
@@ -324,7 +324,7 @@ function twentythirteen_resource_hints( $urls, $relation_type ) {
324324
*/
325325
function twentythirteen_block_editor_styles() {
326326
// Block styles.
327-
wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '2018-12-30' );
327+
wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), wp_get_theme()->get( 'Version' ) );
328328
// Add custom fonts.
329329
wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
330330
}

src/wp-content/themes/twentythirteen/inc/custom-header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function twentythirteen_custom_header_fonts() {
7474
wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
7575

7676
// Add Genericons font.
77-
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' );
77+
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
7878
}
7979
add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' );
8080

0 commit comments

Comments
 (0)