Commit 695ff632 by Scott

Move Question schema further up

parent 9f1907d8
...@@ -435,7 +435,8 @@ class qa_html_theme_base ...@@ -435,7 +435,8 @@ class qa_html_theme_base
$this->body_prefix(); $this->body_prefix();
$this->notices(); $this->notices();
$this->output('<div class="qa-body-wrapper">', ''); $extratags = isset($this->content['main_tags']) ? $this->content['main_tags'] : '';
$this->output('<div class="qa-body-wrapper"' . $extratags . '>', '');
$this->widgets('full', 'top'); $this->widgets('full', 'top');
$this->header(); $this->header();
...@@ -713,9 +714,8 @@ class qa_html_theme_base ...@@ -713,9 +714,8 @@ class qa_html_theme_base
{ {
$content = $this->content; $content = $this->content;
$hidden = !empty($content['hidden']) ? ' qa-main-hidden' : ''; $hidden = !empty($content['hidden']) ? ' qa-main-hidden' : '';
$extratags = isset($this->content['main_tags']) ? $this->content['main_tags'] : '';
$this->output('<div class="qa-main' . $hidden . '"' . $extratags . '>'); $this->output('<div class="qa-main' . $hidden . '">');
$this->widgets('main', 'top'); $this->widgets('main', 'top');
......
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