From 7cdbf9efcc542701b489e8814628bf6a3b48074e Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Tue, 24 Oct 2017 02:42:33 +0200 Subject: Some comments have been updated, unnecessary whitespace at the end of some files was removed and some missing PHP closing tags were added. --- 403.php | 2 +- 404.php | 2 +- admin/auth.php | 5 ++--- admin/database.php | 2 +- admin/index.php | 2 +- admin/page/delete.php | 5 ++--- admin/page/index.php | 2 +- admin/page/insert.php | 2 +- admin/page/search.php | 2 +- admin/page/update.php | 2 +- admin/post/delete.php | 5 ++--- admin/post/index.php | 2 +- admin/post/insert.php | 2 +- admin/post/search.php | 2 +- admin/post/update.php | 2 +- admin/user/delete.php | 5 ++--- admin/user/index.php | 2 +- admin/user/insert.php | 2 +- admin/user/update.php | 2 +- core/include/page/main.php | 3 ++- core/include/post/main.php | 3 ++- core/include/user/main.php | 3 ++- index.php | 2 +- template/admin/html/403.php | 2 +- template/admin/html/home.php | 2 +- template/standard/html/home.php | 2 +- 26 files changed, 33 insertions(+), 34 deletions(-) diff --git a/403.php b/403.php index d0bcf87..54f01ba 100644 --- a/403.php +++ b/403.php @@ -1,6 +1,6 @@ getMessage()); } -?> - +?> \ No newline at end of file diff --git a/admin/database.php b/admin/database.php index bc25b76..d37e158 100644 --- a/admin/database.php +++ b/admin/database.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../core/application.php'; diff --git a/admin/index.php b/admin/index.php index 7e0b838..1f8d9f6 100644 --- a/admin/index.php +++ b/admin/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/page/delete.php b/admin/page/delete.php index 890188e..d23089c 100644 --- a/admin/page/delete.php +++ b/admin/page/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(Page\Exception $Exception) { Application::error404(); } -?> - +?> \ No newline at end of file diff --git a/admin/page/index.php b/admin/page/index.php index eeedbc1..c14bf13 100644 --- a/admin/page/index.php +++ b/admin/page/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/page/insert.php b/admin/page/insert.php index b550434..d95a33d 100644 --- a/admin/page/insert.php +++ b/admin/page/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/page/search.php b/admin/page/search.php index c718caa..d97370d 100644 --- a/admin/page/search.php +++ b/admin/page/search.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; diff --git a/admin/page/update.php b/admin/page/update.php index f8d790a..f0bef1e 100644 --- a/admin/page/update.php +++ b/admin/page/update.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; diff --git a/admin/post/delete.php b/admin/post/delete.php index 80f3a70..78fdf6e 100644 --- a/admin/post/delete.php +++ b/admin/post/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(Post\Exception $Exception) { Application::error404(); } -?> - +?> \ No newline at end of file diff --git a/admin/post/index.php b/admin/post/index.php index 5130612..57b19e9 100644 --- a/admin/post/index.php +++ b/admin/post/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/post/insert.php b/admin/post/insert.php index d3e1b96..d35d527 100644 --- a/admin/post/insert.php +++ b/admin/post/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/post/search.php b/admin/post/search.php index 3369be2..c2c83ca 100644 --- a/admin/post/search.php +++ b/admin/post/search.php @@ -6,7 +6,7 @@ define('ADMINISTRATION', TRUE); define('AUTHENTICATION', TRUE); #=============================================================================== -# INCLUDE: Main configuration +# INCLUDE: Initialization #=============================================================================== require '../../core/application.php'; diff --git a/admin/post/update.php b/admin/post/update.php index c21b96e..d2cf979 100644 --- a/admin/post/update.php +++ b/admin/post/update.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/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'; diff --git a/core/include/page/main.php b/core/include/page/main.php index 18ba4c8..e50445a 100644 --- a/core/include/page/main.php +++ b/core/include/page/main.php @@ -87,4 +87,5 @@ catch(Page\Exception $Exception) { #=============================================================================== catch(User\Exception $Exception) { Application::exit($Exception->getMessage()); -} \ No newline at end of file +} +?> \ No newline at end of file diff --git a/core/include/post/main.php b/core/include/post/main.php index f091a4c..3cdb792 100644 --- a/core/include/post/main.php +++ b/core/include/post/main.php @@ -87,4 +87,5 @@ catch(Post\Exception $Exception) { #=============================================================================== catch(User\Exception $Exception) { Application::exit($Exception->getMessage()); -} \ No newline at end of file +} +?> \ No newline at end of file diff --git a/core/include/user/main.php b/core/include/user/main.php index b2b054a..1028a2e 100644 --- a/core/include/user/main.php +++ b/core/include/user/main.php @@ -95,4 +95,5 @@ catch(User\Exception $Exception) { catch(User\Exception $Exception) { Application::error404(); } -} \ No newline at end of file +} +?> \ No newline at end of file diff --git a/index.php b/index.php index 0697ed3..842da61 100644 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@ text('403_heading_text')?> -

text('403_heading_desc')?>

+

text('403_heading_desc')?>

\ No newline at end of file diff --git a/template/admin/html/home.php b/template/admin/html/home.php index 7698035..9d8aee2 100644 --- a/template/admin/html/home.php +++ b/template/admin/html/home.php @@ -45,4 +45,4 @@

text('home_no_users')?>

- + \ No newline at end of file diff --git a/template/standard/html/home.php b/template/standard/html/home.php index f2aa20e..d49c71b 100644 --- a/template/standard/html/home.php +++ b/template/standard/html/home.php @@ -16,4 +16,4 @@ - + \ No newline at end of file -- cgit v1.2.3