update portalbox functions

This commit is contained in:
ceb
2002-10-05 22:00:25 +00:00
parent 702e169b42
commit c5d16e93c9
4 changed files with 26 additions and 10 deletions

View File

@ -57,7 +57,7 @@
}
}
$this->portalbox($param['title']);
$this->start_template();
//$this->start_template();
}
/*
@ -66,6 +66,15 @@
*/
function draw($extra_data='')
{
if ($extra_data)
{
$this->start_template(True);
}
else
{
$this->start_template();
}
if(count($this->data))
{
for ($x = 0; $x < count($this->data); $x++)
@ -79,6 +88,7 @@
}
$this->output['listbox'] = $var;
}
$this->set_internal($extra_data);
return $this->draw_box();
}