Commit 053357fe by q2apro.com Committed by GitHub

div end marks for better html debugging

parent e0e124c4
...@@ -297,7 +297,7 @@ class qa_html_theme extends qa_html_theme_base ...@@ -297,7 +297,7 @@ class qa_html_theme extends qa_html_theme_base
$this->output_raw($this->content['sidepanel']); $this->output_raw($this->content['sidepanel']);
$this->feed(); $this->feed();
$this->widgets('side', 'bottom'); $this->widgets('side', 'bottom');
$this->output('</div>', ''); $this->output('</div> <!-- qa-sidepanel -->', '');
} }
/** /**
...@@ -312,7 +312,7 @@ class qa_html_theme extends qa_html_theme_base ...@@ -312,7 +312,7 @@ class qa_html_theme extends qa_html_theme_base
if (!empty($sidebar)) { if (!empty($sidebar)) {
$this->output('<div class="qa-sidebar ' . $this->welcome_widget_class . '">'); $this->output('<div class="qa-sidebar ' . $this->welcome_widget_class . '">');
$this->output_raw($sidebar); $this->output_raw($sidebar);
$this->output('</div>', ''); $this->output('</div> <!-- qa-sidebar -->', '');
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment