aboutsummaryrefslogtreecommitdiffstats
path: root/admin/post
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-04-11 22:51:24 +0200
committerThomas Lange <code@nerdmind.de>2017-04-11 22:51:24 +0200
commit4802aeada5b8fde0848852ee56454c887738ead4 (patch)
tree1fef2384e734c9d3ee74eef74691af6fba431e93 /admin/post
parente38d3ed0c779619c8260585f794931c8f55fdd54 (diff)
downloadblog-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/post')
-rw-r--r--admin/post/delete.php2
-rw-r--r--admin/post/index.php2
-rw-r--r--admin/post/insert.php2
-rw-r--r--admin/post/update.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/admin/post/delete.php b/admin/post/delete.php
index af049fa..a5151ff 100644
--- a/admin/post/delete.php
+++ b/admin/post/delete.php
@@ -8,7 +8,7 @@ define('AUTHENTICATION', TRUE);
#===============================================================================
# INCLUDE: Main configuration
#===============================================================================
-require_once '../../core/application.php';
+require '../../core/application.php';
#===============================================================================
# TRY: Post\Exception
diff --git a/admin/post/index.php b/admin/post/index.php
index e3f0a9d..54ddd6c 100644
--- a/admin/post/index.php
+++ b/admin/post/index.php
@@ -8,7 +8,7 @@ define('AUTHENTICATION', TRUE);
#===============================================================================
# INCLUDE: Main configuration
#===============================================================================
-require_once '../../core/application.php';
+require '../../core/application.php';
$site_size = Application::get('POST.LIST_SIZE');
$site_sort = Application::get('POST.LIST_SORT');
diff --git a/admin/post/insert.php b/admin/post/insert.php
index ded732d..bcfb679 100644
--- a/admin/post/insert.php
+++ b/admin/post/insert.php
@@ -8,7 +8,7 @@ define('AUTHENTICATION', TRUE);
#===============================================================================
# INCLUDE: Main configuration
#===============================================================================
-require_once '../../core/application.php';
+require '../../core/application.php';
$Attribute = new Post\Attribute();
diff --git a/admin/post/update.php b/admin/post/update.php
index 7b14cee..109c056 100644
--- a/admin/post/update.php
+++ b/admin/post/update.php
@@ -8,7 +8,7 @@ define('AUTHENTICATION', TRUE);
#===============================================================================
# INCLUDE: Main configuration
#===============================================================================
-require_once '../../core/application.php';
+require '../../core/application.php';
#===============================================================================
# TRY: Post\Exception