From 85b31fe433bd3fe25cf2f14a4a7fa18ccef36ffc Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Tue, 24 Mar 2015 02:25:16 +0100 Subject: [PATCH] Added 'core' + updated index.php (also 'core', careful!) Signed-off-by: Roland Haeder --- .gitmodules | 3 +++ core | 1 + inc | 1 + index.php | 6 +++--- 4 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .gitmodules create mode 160000 core create mode 120000 inc diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..7b054c7 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "core"] + path = core + url = git://git.mxchange.org/core.git diff --git a/core b/core new file mode 160000 index 0000000..87b2be5 --- /dev/null +++ b/core @@ -0,0 +1 @@ +Subproject commit 87b2be57b63b6e923aab40e0fbba2ff86db88a86 diff --git a/inc b/inc new file mode 120000 index 0000000..1f8dea2 --- /dev/null +++ b/inc @@ -0,0 +1 @@ +core/inc \ No newline at end of file diff --git a/index.php b/index.php index 14bb950..ca598d0 100644 --- a/index.php +++ b/index.php @@ -9,7 +9,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -55,7 +55,7 @@ final class ApplicationEntryPoint { // Is a message set? if (empty($message)) { // No message provided - $message = 'No message provided!'; + $message = 'No message provided.'; } // END - if // Get config instance @@ -68,7 +68,7 @@ final class ApplicationEntryPoint { } // END - if // Get some instances - $tpl = FrameworkConfiguration::getSelfInstance()->getConfigEntry('web_template_class'); + $tpl = FrameworkConfiguration::getSelfInstance()->getConfigEntry('html_template_class'); $languageInstance = LanguageSystem::getSelfInstance(); // Initialize template instance here to avoid warnings in IDE -- 2.39.5