36db7a4
Index: src/html/m_tables.cpp
36db7a4
===================================================================
36db7a4
--- src/html/m_tables.cpp	(revision 59686)
36db7a4
+++ src/html/m_tables.cpp	(revision 59687)
36db7a4
@@ -684,6 +684,7 @@
36db7a4
         {
36db7a4
             wxHtmlTableCell *oldt = m_Table;
36db7a4
 
36db7a4
+            wxHtmlContainerCell *oldEnclosing = m_enclosingContainer;
36db7a4
             m_enclosingContainer = c = m_WParser->OpenContainer();
36db7a4
 
36db7a4
             m_Table = new wxHtmlTableCell(c, tag, m_WParser->GetPixelScale());
36db7a4
@@ -722,6 +723,7 @@
36db7a4
             m_WParser->CloseContainer();
36db7a4
 
36db7a4
             m_Table = oldt;
36db7a4
+            m_enclosingContainer = oldEnclosing;
36db7a4
 
36db7a4
             return true; // ParseInner() called
36db7a4
         }