I add like this:
function sidepanel()
{
$this->output('<div class="qa-sidepanel">');
if ( $this->template === 'question' )
{
<div>something</div>
}
$this->widgets('side', 'top');
$this->sidebar();
$this->widgets('side', 'high');
$this->nav('cat', 1);
$this->widgets('side', 'low');
$this->output_raw(@$this->content['sidepanel']);
$this->feed();
$this->widgets('side', 'bottom');
$this->output('</div>', '');
}
and show me error when i try open website ?
Thanks.