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