From a804139a482d4b37fbba05a47357c08bdda53094 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 8 Feb 2008 21:25:25 +0000 Subject: [PATCH] Default application is now mxchange --- .gitattributes | 1 + inc/config-local.php | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 inc/config-local.php diff --git a/.gitattributes b/.gitattributes index 4198f298a7..f586139f35 100644 --- a/.gitattributes +++ b/.gitattributes @@ -142,6 +142,7 @@ inc/classes/middleware/debug/.htaccess -text inc/classes/middleware/debug/class_DebugMiddleware.php -text inc/classes/middleware/io/.htaccess -text inc/classes/middleware/io/class_FileIOHandler.php -text +inc/config-local.php -text inc/config.php -text inc/config/.htaccess -text inc/config/class_FrameworkConfiguration.php -text diff --git a/inc/config-local.php b/inc/config-local.php new file mode 100644 index 0000000000..99b4e66278 --- /dev/null +++ b/inc/config-local.php @@ -0,0 +1,29 @@ + + * @version 0.3.0 + * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @license GNU GPL 3.0 or any newer version + * @link http://www.mxchange.org + * + * 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +// CFG: DEFAULT-APPLICATION +$cfg->setConfigEntry("default_application", "mxchange"); + +// [EOF] +?> -- 2.30.2