index files without header include, but working with sessionid in url

This commit is contained in:
Ralf Becker 2008-08-14 13:53:17 +00:00
parent 563ac8c71c
commit 1ed5390669
3 changed files with 20 additions and 26 deletions

View File

@ -10,4 +10,5 @@
* @version $Id$ * @version $Id$
*/ */
header('Location: ../index.php?menuaction=calendar.calendar_uiviews.index'); header('Location: ../index.php?menuaction=calendar.calendar_uiviews.index'.
(isset($_GET['sessionid']) ? '&sessionid='.$_GET['sessionid'].'&kp3='.$_GET['kp3'] : ''));

View File

@ -1,24 +1,14 @@
<?php <?php
/**************************************************************************\ /**
* eGroupWare - eTemplates - Editor * * eGroupWare - eTemplates - Editor
* http://www.egroupware.org * *
* Written by Ralf Becker <RalfBecker@outdoor-training.de> * * @link http://www.egroupware.org
* -------------------------------------------- * * @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* This program is free software; you can redistribute it and/or modify it * * @package etemplate
* under the terms of the GNU General Public License as published by the * * @copyright (c) 2002-8 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* Free Software Foundation; either version 2 of the License, or (at your * * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* option) any later version. * * @version $Id$
\**************************************************************************/ */
/* $Id$ */ header('Location: ../index.php?menuaction=etemplate.editor.edit'.
(isset($_GET['sessionid']) ? '&sessionid='.$_GET['sessionid'].'&kp3='.$_GET['kp3'] : ''));
$GLOBALS['egw_info'] = array(
'flags' => array(
'currentapp' => 'etemplate',
'noheader' => True,
'nonavbar' => True,
),
);
include('../header.inc.php');
$GLOBALS['egw']->redirect_link('/index.php','menuaction=etemplate.editor.edit');

View File

@ -1,11 +1,14 @@
<?php <?php
/** /**
* Filemanager - user interface * eGroupWare - Filemanager - user interface
* *
* @link http://www.egroupware.org * @link http://www.egroupware.org
* @package filemanager * @package filemanager
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @copyright (c) 2008 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$ * @version $Id$
*/ */
header('Location: ../index.php?menuaction=filemanager.filemanager_ui.index'); header('Location: ../index.php?menuaction=filemanager.filemanager_ui.index'.
(isset($_GET['sessionid']) ? '&sessionid='.$_GET['sessionid'].'&kp3='.$_GET['kp3'] : ''));