From f92141d793c25874ac59d263f4d96c5946e2e336 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 2 Jan 2005 04:21:58 +0000 Subject: [PATCH] r44: Initial incomplete checkin of global.php. --- global.php | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 global.php diff --git a/global.php b/global.php new file mode 100755 index 0000000..126eb42 --- /dev/null +++ b/global.php @@ -0,0 +1,50 @@ +userinfo['userid']) +{ + echo '
You are logged in as ' . construct_user_display($bugsys->userinfo) . ' | [Home] | [New Bug]

' . "\n\n\n\n"; +} + +// ################################################################### +require_once('./includes/functions_template.php'); +$tpl = new Template(); + +$globaltemplates = array( + 'doctype', + 'header', + 'headinclude', + 'footer', + 'selectoption', + 'selectoptgroup' +); + +$tpl->cache(array_merge($globaltemplates, (array)$fetchtemplates)); + +// ################################################################### +// initialize template variables +$show = array(); + +/*=====================================================================*\ +|| ################################################################### +|| # $HeadURL$ +|| # $Id$ +|| ################################################################### +\*=====================================================================*/ +?> \ No newline at end of file -- 2.22.5