Re: [Phplib-users] Template Bugs..
Brought to you by:
nhruby,
richardarcher
|
From: nathan r. h. <na...@ds...> - 2002-05-13 20:26:41
|
On 13 May 2002, Mike Gifford wrote:
>
> $this->template->parse('SIDBAR', $template);
> $articleLinks = $this->template->get('SIDBAR');
> return $articleLinks;
$this->template->parse('SIDBAR', $template, TRUE);
return $this->template->get('SIDBAR');
Note the addtional TRUE in parse(). When in doubt, enabling debugging for
template.inc, you get to see what's
happening exactly at every step
-n
------
nathan hruby
na...@ds...
------
|