From 19e69cce8a694df49e4140c8cb2347eb8f21f5df Mon Sep 17 00:00:00 2001 From: westi Date: Sun, 7 Dec 2008 22:13:00 +0000 Subject: [PATCH] Append don't overwrite. See #8649 props rboren. git-svn-id: http://svn.automattic.com/wordpress/trunk@10121 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index c4b04fe88..594ecb02b 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -688,7 +688,7 @@ function wp_page_menu( $args = array() ) { } else { $list_args['exclude'] = ''; } - $list_args['exclude'] = get_option('page_on_front'); + $list_args['exclude'] .= get_option('page_on_front'); } }