Twenty Seventeen: Keyboard navigation on Safari 10 fix

This resolves the weird behaviour on Safari 10 has some weird behaviour.

Props rianrietveld, swisspidy, afercia, sami.keijonen, arush, davidakennedy
Fixes #38387


Built from https://develop.svn.wordpress.org/trunk@39206


git-svn-id: http://core.svn.wordpress.org/trunk@39146 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2016-11-12 23:39:34 +00:00
parent 956818f5eb
commit 41cf4e1656
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ function twentyseventeen_get_svg( $args = array() ) {
*
* See https://core.trac.wordpress.org/ticket/38387.
*/
$svg .= ' <use xlink:href="#icon-' . esc_html( $args['icon'] ) . '"></use> ';
$svg .= ' <use href="#icon-' . esc_html( $args['icon'] ) . '" xlink:href="#icon-' . esc_html( $args['icon'] ) . '"></use> ';
// Add some markup to use as a fallback for browsers that do not support SVGs.
if ( $args['fallback'] ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-beta3-39205';
$wp_version = '4.7-beta3-39206';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.