Remove redundant call to function_exists() in wp_nav_menu(). Fixes #15094

git-svn-id: https://develop.svn.wordpress.org/trunk@15774 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-10-11 13:21:08 +00:00
parent 253cc18443
commit b3bcb5f77e
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ function wp_nav_menu( $args = array() ) {
// If no menu was found or if the menu has no items and no location was requested, call the fallback_cb if it exists
if ( ( !$menu || is_wp_error($menu) || ( isset($menu_items) && empty($menu_items) && !$args->theme_location ) )
&& $args->fallback_cb && ( function_exists($args->fallback_cb) || is_callable( $args->fallback_cb ) ) )
&& $args->fallback_cb && is_callable( $args->fallback_cb ) )
return call_user_func( $args->fallback_cb, (array) $args );
// If no fallback function was specified and the menu doesn't exists, bail.