Skip to content

Commit

Permalink
some follow ups for latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jakoch committed Sep 2, 2012
1 parent 205692e commit 382c98a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Clansuite/Version.php
Expand Up @@ -24,7 +24,7 @@
*
*/

namespace Clansuite\Application;
namespace Clansuite;

/** =============================================================================
* WARNING: THIS FILE CONTAINS VERSION INFO ONLY AND IS AUTOMATICALLY UPDATED
Expand Down
4 changes: 2 additions & 2 deletions Installation/bootstrap.php
Expand Up @@ -39,12 +39,12 @@
define('DS', DIRECTORY_SEPARATOR);
define('INSTALLATION_ROOT', __DIR__ . DS);
define('ROOT', dirname(INSTALLATION_ROOT) . DS);
define('ROOT_APP', ROOT . 'Application/');
define('ROOT_APP', ROOT . 'Clansuite/');
define('ROOT_CACHE', ROOT_APP . 'Cache/');
define('KOCH', ROOT . 'framework/Koch/');
define('PROTOCOL', 'http://');
define('SERVER_URL', PROTOCOL . $_SERVER['SERVER_NAME']);
define('WWW_ROOT', SERVER_URL . '/Application/');
define('WWW_ROOT', SERVER_URL . '/Clansuite/');
define('WWW_ROOT_THEMES_CORE', WWW_ROOT . 'themes/core/');
define('NL', '<br />' . PHP_EOL);
define('CR', "\n");
Expand Down
4 changes: 2 additions & 2 deletions index.php
Expand Up @@ -28,6 +28,6 @@
+----------------------------------------------------------------------------------+
*/

require 'Application/CMS.php';
require 'Clansuite/Application.php';

\Clansuite\CMS::run();
\Clansuite\Application::run();

0 comments on commit 382c98a

Please sign in to comment.