Yeah, I've already look into that. Here's the function that actually insert the logo (or tiltle depending on what was put into content):
function logo()
{
$this->output(
'<DIV CLASS="qa-logo">',
$this->content['logo'],
'</DIV>'
);
}
What this table return depend on what was decided to be inserted by the admin. I guess I could just ignored the parameter and insert both in the logo() fucntion... but this feel a bit like a hack!