make sure that we are really working with a object. That's not always true, when using SyncML for example.

This commit is contained in:
Lars Kneschke 2007-01-24 16:38:46 +00:00
parent f2c57020a5
commit 4fe75764bc

View File

@ -1105,7 +1105,9 @@
*/
function egw_footer()
{
echo $GLOBALS['egw']->framework->footer();
if(is_object($GLOBALS['egw']->framework)) {
echo $GLOBALS['egw']->framework->footer();
}
}
/**