diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/application.php | 4 | ||||
-rw-r--r-- | core/configuration-example.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/application.php b/core/application.php index 4c7fdb2..ee34d54 100644 --- a/core/application.php +++ b/core/application.php @@ -94,7 +94,7 @@ foreach($configuration as $name => $value) { require 'configuration.php'; #=============================================================================== -# Overwrite configuration if admin +# Override configuration if admin #=============================================================================== if(defined('ADMINISTRATION') AND ADMINISTRATION === TRUE) { @@ -111,7 +111,7 @@ if(defined('ADMINISTRATION') AND ADMINISTRATION === TRUE) { } #=========================================================================== - # Overwrite configuration + # Override configuration #=========================================================================== Application::set('CORE.LANGUAGE', Application::get('ADMIN.LANGUAGE')); Application::set('TEMPLATE.NAME', Application::get('ADMIN.TEMPLATE')); diff --git a/core/configuration-example.php b/core/configuration-example.php index 7805320..6c7d40a 100644 --- a/core/configuration-example.php +++ b/core/configuration-example.php @@ -3,9 +3,9 @@ # Main configuration [Thomas Lange <code@nerdmind.de>] # #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# # # -# This file overwrites the pre-defined configuration values of the application # +# This file will override the pre-defined configuration settings of the system # # and is the primary file where you change the configuration. Do not touch any # -# other files to change your configuration – just overwrite it here! # +# other files to change your configuration – just override it here! # # # # Documentation: # # 1. https://github.com/Nerdmind/Blog/wiki/Configuration # |