diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-11 22:51:24 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-11 22:51:24 +0200 |
commit | 4802aeada5b8fde0848852ee56454c887738ead4 (patch) | |
tree | 1fef2384e734c9d3ee74eef74691af6fba431e93 /admin/database.php | |
parent | e38d3ed0c779619c8260585f794931c8f55fdd54 (diff) | |
download | blog-4802aeada5b8fde0848852ee56454c887738ead4.tar.gz blog-4802aeada5b8fde0848852ee56454c887738ead4.tar.xz blog-4802aeada5b8fde0848852ee56454c887738ead4.zip |
The control structures "require_once" have been replaced by a simple "require" (except within the 403.php and 404.php where it makes sense, because these files can be directly called or included).
Diffstat (limited to 'admin/database.php')
-rw-r--r-- | admin/database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/database.php b/admin/database.php index 01c2dd7..bc25b76 100644 --- a/admin/database.php +++ b/admin/database.php @@ -8,7 +8,7 @@ define('AUTHENTICATION', TRUE); #=============================================================================== # INCLUDE: Main configuration #=============================================================================== -require_once '../core/application.php'; +require '../core/application.php'; #=============================================================================== # Execute database command(s) |