mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-11 15:59:45 +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);
|
$t->pfp('out','info_list_t',true);
|
||||||
|
|
||||||
if (!$for_include)
|
|
||||||
$phpgw->common->phpgw_footer();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function edit( ) {
|
function edit( ) {
|
||||||
@ -745,7 +742,6 @@
|
|||||||
$phpgw->common->phpgw_header();
|
$phpgw->common->phpgw_header();
|
||||||
echo parse_navbar();
|
echo parse_navbar();
|
||||||
|
|
||||||
$t = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
|
|
||||||
$t->set_file(array( 'info_delete' => 'delete.tpl' ));
|
$t->set_file(array( 'info_delete' => 'delete.tpl' ));
|
||||||
$t->set_var( $this->setStyleSheet( ));
|
$t->set_var( $this->setStyleSheet( ));
|
||||||
$t->set_var( $this->infoHeaders( ));
|
$t->set_var( $this->infoHeaders( ));
|
||||||
@ -760,9 +756,6 @@
|
|||||||
array('info_id' => $info_id,'confirm' => 'True')+
|
array('info_id' => $info_id,'confirm' => 'True')+
|
||||||
$this->menuaction('delete')));
|
$this->menuaction('delete')));
|
||||||
$t->pfp('out','info_delete');
|
$t->pfp('out','info_delete');
|
||||||
|
|
||||||
$phpgw->common->phpgw_footer();
|
|
||||||
echo parse_navbar_end();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,9 +17,11 @@
|
|||||||
'currentapp' => 'infolog',
|
'currentapp' => 'infolog',
|
||||||
'noheader' => True,
|
'noheader' => True,
|
||||||
'nonavbar' => True
|
'nonavbar' => True
|
||||||
);
|
);
|
||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
$obj = CreateObject('infolog.uiinfolog');
|
$obj = CreateObject('infolog.uiinfolog');
|
||||||
$obj->get_list();
|
$obj->get_list();
|
||||||
|
|
||||||
|
$phpgw->common->phpgw_footer();
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user