From af7107e8304e0ac0ad6fc2dfbecc9062d90e0b17 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Thu, 18 Jul 2013 10:22:45 -0700 Subject: [PATCH] Add note fall through is intentional. Signed-off-by: Edward Z. Yang --- library/HTMLPurifier/ChildDef/Table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/HTMLPurifier/ChildDef/Table.php b/library/HTMLPurifier/ChildDef/Table.php index 9a93421a..75af898c 100644 --- a/library/HTMLPurifier/ChildDef/Table.php +++ b/library/HTMLPurifier/ChildDef/Table.php @@ -81,6 +81,7 @@ class HTMLPurifier_ChildDef_Table extends HTMLPurifier_ChildDef switch ($collection[$tag_index]->name) { case 'tbody': $tbody_mode = true; + // fall through case 'tr': $content[] = $collection; break;