diff --git a/anon_wrapper.php b/anon_wrapper.php deleted file mode 100644 index 0a7afb2ba4..0000000000 --- a/anon_wrapper.php +++ /dev/null @@ -1,40 +0,0 @@ - * - * -------------------------------------------- * - * 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. * - \**************************************************************************/ - - /* $Id$ */ - - // TODO: - // Limit which users can access this program (ACL check) - // Global disabler - // Detect bad logins and passwords, spit out generic message - - // If your are going to use multiable accounts, remove the following lines - $login = 'anonymous'; - $passwd = 'anonymous'; - - $GLOBALS['egw_info']['flags'] = array( - 'disable_Template_class' => True, - 'login' => True, - 'currentapp' => 'login', - 'noheader' => True - ); - include('./header.inc.php'); - - // If your are going to use multiable accounts, remove the following lines - // You must create the useraccount and check its permissions before use - - $login = 'anonymous'; - $passwd = 'anonymous'; - - $sessionid = $GLOBALS['egw']->session->create($login,$passwd,'text'); - $GLOBALS['egw']->redirect($GLOBALS['egw']->link('/index.php')); -?>