fixed deprecated comment in common::footer: user *echo* framework->footer()

This commit is contained in:
Ralf Becker 2010-06-15 09:15:00 +00:00
parent 110f40df1d
commit 907424a99b

View File

@ -973,11 +973,12 @@ class common
/** /**
* load the eGW footer * load the eGW footer
* *
* @deprecated use $GLOBALS['egw']->framework->footer() or egw_framework::render($content) * @deprecated use echo $GLOBALS['egw']->framework->footer() or egw_framework::render($content)
*/ */
static function egw_footer() static function egw_footer()
{ {
if(is_object($GLOBALS['egw']->framework)) { if(is_object($GLOBALS['egw']->framework))
{
echo $GLOBALS['egw']->framework->footer(); echo $GLOBALS['egw']->framework->footer();
} }
} }