Fix WP_Theme's get_template_directory_uri() method. props batmoo. see #21549 for trunk.

git-svn-id: https://develop.svn.wordpress.org/trunk@21503 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-08-14 18:38:26 +00:00
parent 52c9b5af0d
commit 665ad96636
1 changed files with 1 additions and 1 deletions

View File

@ -814,7 +814,7 @@ final class WP_Theme implements ArrayAccess {
else
$theme_root_uri = $this->get_theme_root_uri();
return $theme_root . '/' . $this->template;
return $theme_root_uri . '/' . $this->template;
}
/**