diff --git a/etemplate/process_exec.php b/etemplate/process_exec.php index 47da86bede..d2d45c7388 100644 --- a/etemplate/process_exec.php +++ b/etemplate/process_exec.php @@ -1,26 +1,24 @@ * - * -------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; either version 2 of the License, or (at your * - * option) any later version. * - \**************************************************************************/ +/** + * eGroupWare - eTemplates - Editor + * + * @link http://www.egroupware.org + * @author Ralf Becker + * @package etemplate + * @copyright (c) 2002-8 by Ralf Becker + * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License + * @version $Id$ + */ - /* $Id$ */ +list($app) = explode('.',$_GET['menuaction']); - list($app) = explode('.',$_GET['menuaction']); +$GLOBALS['egw_info'] = array( + 'flags' => array( + 'currentapp' => $app, + 'noheader' => True, + 'nonavbar' => True, + ), +); +include('../header.inc.php'); - $GLOBALS['egw_info'] = array( - 'flags' => array( - 'currentapp' => $app, - 'noheader' => True, - 'nonavbar' => True, - ), - ); - include('../header.inc.php'); - - ExecMethod('etemplate.etemplate.process_exec'); +ExecMethod('etemplate.etemplate.process_exec');