$phpgw->common->phpgw_footer() only in app/index.php and /index.php not in the class.uiapp.inc.php

This commit is contained in:
Ralf Becker 2001-07-14 13:08:47 +00:00
parent c8fb93b235
commit eb8b31b9c4
2 changed files with 6 additions and 11 deletions

View File

@ -459,9 +459,6 @@
}
$t->pfp('out','info_list_t',true);
if (!$for_include)
$phpgw->common->phpgw_footer();
}
function edit( ) {
@ -745,7 +742,6 @@
$phpgw->common->phpgw_header();
echo parse_navbar();
$t = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
$t->set_file(array( 'info_delete' => 'delete.tpl' ));
$t->set_var( $this->setStyleSheet( ));
$t->set_var( $this->infoHeaders( ));
@ -760,9 +756,6 @@
array('info_id' => $info_id,'confirm' => 'True')+
$this->menuaction('delete')));
$t->pfp('out','info_delete');
$phpgw->common->phpgw_footer();
echo parse_navbar_end();
}
}
}

View File

@ -17,9 +17,11 @@
'currentapp' => 'infolog',
'noheader' => True,
'nonavbar' => True
);
include('../header.inc.php');
);
include('../header.inc.php');
$obj = CreateObject('infolog.uiinfolog');
$obj->get_list();
$obj = CreateObject('infolog.uiinfolog');
$obj->get_list();
$phpgw->common->phpgw_footer();
?>