Commit 99535 by goba

#214513 by Lynn: break was missing in system_send_email_action(), causing the action code to fall over to a different context (critical)

--- modules/system/system.module        2008/02/04 12:07:23     1.585
+++ modules/system/system.module        2008/02/06 12:15:28     1.585.2.1
@@ -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