From 9e90c3e741effb272eb6a8b25b45a0e762936616 Mon Sep 17 00:00:00 2001
From: webchick <webchick@24967.no-reply.drupal.org>
Date: Mon, 26 Mar 2012 21:48:06 -0700
Subject: [PATCH] Issue #1338282 by Damien Tournoud, zymsys, JamesOakley,
 pillarsdotnet, chx: Fixed php notice in menu_link_save().

---
 core/includes/menu.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/includes/menu.inc b/core/includes/menu.inc
index 2121619db5fd..f2da288f70a6 100644
--- a/core/includes/menu.inc
+++ b/core/includes/menu.inc
@@ -3102,10 +3102,10 @@ function menu_link_save(&$item, $existing_item = array(), $parent_candidates = a
   }
   // If every value in $existing_item is the same in the $item, there is no
   // reason to run the update queries or clear the caches. We use
-  // array_intersect_assoc() with the $item as the first parameter because
+  // array_intersect_key() with the $item as the first parameter because
   // $item may have additional keys left over from building a router entry.
   // The intersect removes the extra keys, allowing a meaningful comparison.
-  if (!$existing_item || (array_intersect_assoc($item, $existing_item)) != $existing_item) {
+  if (!$existing_item || (array_intersect_key($item, $existing_item)) != $existing_item) {
     db_update('menu_links')
       ->fields(array(
         'menu_name' => $item['menu_name'],
-- 
GitLab