going back to the old way of showing content, before Seek3r's change in the templates.

Showing the content via set_var('phpgw_body',$html) removes '{something}' from the html and expressions like that are needed as variable names.
This commit is contained in:
Ralf Becker 2002-09-03 10:27:23 +00:00
parent c819768349
commit b977162613

View File

@ -126,7 +126,8 @@
}
else
{
$GLOBALS['phpgw']->template->set_var('phpgw_body',$html);
echo $html;
// this removes {} eg.'${test}' -> '$' $GLOBALS['phpgw']->template->set_var('phpgw_body',$html);
}
}