diff options
author | Thomas Lange <code@nerdmind.de> | 2017-10-24 02:42:33 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-10-24 02:42:33 +0200 |
commit | 7cdbf9efcc542701b489e8814628bf6a3b48074e (patch) | |
tree | 1a3b30240cad8677c279e3efddd722d9d016ca29 /admin/user | |
parent | 5350bb7abb102a537b8dafcc6cf46679f4b52c50 (diff) | |
download | blog-7cdbf9efcc542701b489e8814628bf6a3b48074e.tar.gz blog-7cdbf9efcc542701b489e8814628bf6a3b48074e.tar.xz blog-7cdbf9efcc542701b489e8814628bf6a3b48074e.zip |
Some comments have been updated, unnecessary whitespace at the end of some files was removed and some missing PHP closing tags were added.
Diffstat (limited to 'admin/user')
-rw-r--r-- | admin/user/delete.php | 5 | ||||
-rw-r--r-- | admin/user/index.php | 2 | ||||
-rw-r--r-- | admin/user/insert.php | 2 | ||||
-rw-r--r-- | admin/user/update.php | 2 |
4 files changed, 5 insertions, 6 deletions
diff --git a/admin/user/delete.php b/admin/user/delete.php index 28d1b2a..16f0d76 100644 --- a/admin/user/delete.php +++ b/admin/user/delete.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; @@ -63,5 +63,4 @@ try { catch(User\Exception $Exception) { Application::error404(); } -?> - +?>
\ No newline at end of file diff --git a/admin/user/index.php b/admin/user/index.php index ca4dcab..b474fc8 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; diff --git a/admin/user/insert.php b/admin/user/insert.php index 14b1f13..53d35df 100644 --- a/admin/user/insert.php +++ b/admin/user/insert.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; diff --git a/admin/user/update.php b/admin/user/update.php index 9e6ce01..becfdc5 100644 --- a/admin/user/update.php +++ b/admin/user/update.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; |