`wlwmanifest_link()` should use the `WPINC` constant

Props wojtek.szkutnik
See #14157.

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


git-svn-id: http://core.svn.wordpress.org/trunk@28704 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-06-29 22:17:14 +00:00
parent 3d0a869a21
commit 8dd3c0e909
1 changed files with 2 additions and 2 deletions

View File

@ -2181,8 +2181,8 @@ function rsd_link() {
* @since 2.3.1 * @since 2.3.1
*/ */
function wlwmanifest_link() { function wlwmanifest_link() {
echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="',
. get_bloginfo('wpurl') . '/wp-includes/wlwmanifest.xml" /> ' . "\n"; get_bloginfo('wpurl'), '/', WPINC, '/wlwmanifest.xml" /> ', "\n";
} }
/** /**