mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:19:00 +01:00
$phpgw->common->phpgw_footer() only in app/index.php and /index.php not in the class.uiapp.inc.php
This commit is contained in:
parent
c8fb93b235
commit
eb8b31b9c4
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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();
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user