diff options
author | Thomas Lange <code@nerdmind.de> | 2019-10-29 01:37:57 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2019-10-29 01:50:50 +0100 |
commit | cd17efc82a5ed560a50b8a1619e4e724098eb209 (patch) | |
tree | 0bf334219e1ef8adc17c20004ca31efeced65abd /theme/admin/html | |
parent | fb7d34f69a0e47643c1e16c9e3d72dbc74b4bc4d (diff) | |
download | blog-cd17efc82a5ed560a50b8a1619e4e724098eb209.tar.gz blog-cd17efc82a5ed560a50b8a1619e4e724098eb209.tar.xz blog-cd17efc82a5ed560a50b8a1619e4e724098eb209.zip |
Remove PHP closing tags and add LF to text files
Remove the unnecessary PHP closing tags and ensure that *all* text files ending with a LF character.
Diffstat (limited to 'theme/admin/html')
-rw-r--r-- | theme/admin/html/403.php | 2 | ||||
-rw-r--r-- | theme/admin/html/404.php | 2 | ||||
-rw-r--r-- | theme/admin/html/auth.php | 2 | ||||
-rw-r--r-- | theme/admin/html/database.php | 2 | ||||
-rw-r--r-- | theme/admin/html/home.php | 3 | ||||
-rw-r--r-- | theme/admin/html/main.php | 2 | ||||
-rw-r--r-- | theme/admin/html/pagination.php | 2 |
7 files changed, 8 insertions, 7 deletions
diff --git a/theme/admin/html/403.php b/theme/admin/html/403.php index 6fb3d16..f9a0afd 100644 --- a/theme/admin/html/403.php +++ b/theme/admin/html/403.php @@ -1,2 +1,2 @@ <h1><i class="fa fa-exclamation-triangle"></i><?=$Language->text('403_heading_text')?></h1> -<p><?=$Language->text('403_heading_desc')?></p>
\ No newline at end of file +<p><?=$Language->text('403_heading_desc')?></p> diff --git a/theme/admin/html/404.php b/theme/admin/html/404.php index aa264cd..d53d1bc 100644 --- a/theme/admin/html/404.php +++ b/theme/admin/html/404.php @@ -1,2 +1,2 @@ <h1><i class="fa fa-exclamation-triangle"></i><?=$Language->text('404_heading_text')?></h1> -<p><?=$Language->text('404_heading_desc')?></p>
\ No newline at end of file +<p><?=$Language->text('404_heading_desc')?></p> diff --git a/theme/admin/html/auth.php b/theme/admin/html/auth.php index e6bfb1e..ebb7a2a 100644 --- a/theme/admin/html/auth.php +++ b/theme/admin/html/auth.php @@ -31,4 +31,4 @@ <div class="flex flex-padding background"> <input type="submit" name="auth" value="<?=$Language->text('login')?>" /> </div> -</form>
\ No newline at end of file +</form> diff --git a/theme/admin/html/database.php b/theme/admin/html/database.php index 983dee7..21701bd 100644 --- a/theme/admin/html/database.php +++ b/theme/admin/html/database.php @@ -27,4 +27,4 @@ <div class="flex flex-padding background"> <input id="insert-button" type="submit" name="execute" value="Execute" /> </div> -</form>
\ No newline at end of file +</form> diff --git a/theme/admin/html/home.php b/theme/admin/html/home.php index a8b003e..083ae30 100644 --- a/theme/admin/html/home.php +++ b/theme/admin/html/home.php @@ -42,4 +42,5 @@ </div> <?php else: ?> <p><em><?=$Language->text('home_no_users')?></em></p> -<?php endif; ?>
\ No newline at end of file +<?php endif; ?> + diff --git a/theme/admin/html/main.php b/theme/admin/html/main.php index 6002bdf..51f00e4 100644 --- a/theme/admin/html/main.php +++ b/theme/admin/html/main.php @@ -49,4 +49,4 @@ </ul> </footer> </body> -</html>
\ No newline at end of file +</html> diff --git a/theme/admin/html/pagination.php b/theme/admin/html/pagination.php index 42eb378..70720b6 100644 --- a/theme/admin/html/pagination.php +++ b/theme/admin/html/pagination.php @@ -27,4 +27,4 @@ <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-right"></i></a></div> <?php endif; ?> -</div>
\ No newline at end of file +</div> |