From 053357fe5f53d3dc73219a0710673d1361411658 Mon Sep 17 00:00:00 2001 From: "q2apro.com" Date: Mon, 12 Sep 2016 10:53:30 +0300 Subject: [PATCH] div end marks for better html debugging --- qa-theme/SnowFlat/qa-theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa-theme/SnowFlat/qa-theme.php b/qa-theme/SnowFlat/qa-theme.php index 2773480b2..414685999 100755 --- a/qa-theme/SnowFlat/qa-theme.php +++ b/qa-theme/SnowFlat/qa-theme.php @@ -297,7 +297,7 @@ public function sidepanel() $this->output_raw($this->content['sidepanel']); $this->feed(); $this->widgets('side', 'bottom'); - $this->output('', ''); + $this->output(' ', ''); } /** @@ -312,7 +312,7 @@ public function sidebar() if (!empty($sidebar)) { $this->output('
'); $this->output_raw($sidebar); - $this->output('
', ''); + $this->output(' ', ''); } } }