1<?php
2 /**********************************************************************\
3 * phpGroupWare - eTemplate						*
4 * http://www.phpgroupware.org						*
5 * This program is part of the GNU project, see http://www.gnu.org/	*
6 *									*
7 * Copyright 2002, 2003 Free Software Foundation, Inc.			*
8 *									*
9 * Originally Written by Bettina Gille - <ceb at phpgroupware.org>	*
10 * Contributions from Ralf Becker - <ralfbecker@outdoor-training.de>	*
11 * --------------------------------------------				*
12 * This program is Free Software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or 	*
15 * at your option) any later version.					*
16 \**********************************************************************/
17 /* $Id: index.php 13407 2003-09-07 01:29:29Z skwashd $ */
18
19	$GLOBALS['phpgw_info']['flags'] = array
20	(
21		'currentapp' => 'et_notes',
22		'noheader'   => True,
23		'nonavbar'   => True
24	);
25	include('../header.inc.php');
26
27	header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=et_notes.ui.index'));
28	$GLOBALS['phpgw']->common->phpgw_exit();
29?>
30