Theme Customizer: Remove unused 'template' argument from wp_customize_url. see #19910.

git-svn-id: https://develop.svn.wordpress.org/trunk@20520 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith
2012-04-18 20:57:06 +00:00
parent 8f64e53493
commit e5a53305a2
4 changed files with 6 additions and 6 deletions

View File

@@ -1600,6 +1600,6 @@ add_action( 'admin_enqueue_scripts', '_wp_customize_loader_localize' );
*
* @since 3.4.0
*/
function wp_customize_url( $stylesheet, $template ) {
function wp_customize_url( $stylesheet ) {
return esc_url( admin_url( 'admin.php' ) . '?customize=on&theme=' . $stylesheet );
}