Commit 99602 by dries

- Patch #214513 by Lynn: missing break-statement in system_send_email_action.

--- includes/menu.inc   2008/02/06 19:41:24     1.257
+++ includes/menu.inc   2008/02/06 19:52:54     1.258
@@ -652,14 +652,14 @@
 
     _menu_item_localize($item, $map, TRUE);
   }
-  
+
   // Allow other customizations - e.g. adding a page-specific query string to the
   // options array. For performance reasons we only invoke this hook if the link
   // has the 'alter' flag set in the options array.
   if (!empty($item['options']['alter'])) {
     drupal_alter('translated_menu_link', $item, $map);
   }
-  
+
   return $map;
 }
 

--- modules/system/system.module        2008/02/04 12:07:23     1.585
+++ modules/system/system.module        2008/02/06 19:52:54     1.586
@@ -1639,6 +1639,7 @@
     case 'comment':
       $comment = $context['comment'];
       $node = node_load($comment->nid);
+      break;
     case 'user':
       // Because this is not an action of type 'user' the user
       // object is not passed as $object, but it will still be available
No votes yet