From 4b1eea2325d34d8819334500d9c40248042badb4 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sun, 21 Feb 2010 10:57:05 +0000 Subject: [PATCH] Fix Typo. Props TobiasBg. Fixes #12319. See #11817 git-svn-id: https://develop.svn.wordpress.org/trunk@13281 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/custom-navigation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/custom-navigation.php b/wp-admin/custom-navigation.php index 2b31299664..96962bc9de 100644 --- a/wp-admin/custom-navigation.php +++ b/wp-admin/custom-navigation.php @@ -147,7 +147,7 @@ function wp_custom_navigation() { if (isset($_POST['newwindow'.$k])) { $new_window = $_POST['newwindow'.$k]; } else { $new_window = 0; } $post = array( 'post_status' => 'publish', 'post_type' => 'menu_item', 'post_author' => $user_ID, - 'ping_status' => 0, 'post_parent' => $post_id, '`menu_order' => $position, + 'ping_status' => 0, 'post_parent' => $post_id, 'menu_order' => $position, 'guid' => $custom_linkurl, 'post_excerpt' => $custom_anchor_title, 'tax_input' => array( 'menu' => $menu_title ), 'post_content' => $custom_description, 'post_title' => $custom_title ); if ( $new_window )