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/default/html/feed | |
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/default/html/feed')
-rw-r--r-- | theme/default/html/feed/item_page.php | 2 | ||||
-rw-r--r-- | theme/default/html/feed/item_post.php | 2 | ||||
-rw-r--r-- | theme/default/html/feed/main.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/theme/default/html/feed/item_page.php b/theme/default/html/feed/item_page.php index ff9f209..82568a1 100644 --- a/theme/default/html/feed/item_page.php +++ b/theme/default/html/feed/item_page.php @@ -24,4 +24,4 @@ $HTML = $PAGE['BODY']['HTML'](); <?php foreach($PAGE['FILE']['LIST'] as $fileURL): ?> <media:content url="<?=$fileURL?>" medium="image"></media:content> <?php endforeach; ?> -</item>
\ No newline at end of file +</item> diff --git a/theme/default/html/feed/item_post.php b/theme/default/html/feed/item_post.php index 07d400d..0bf23fc 100644 --- a/theme/default/html/feed/item_post.php +++ b/theme/default/html/feed/item_post.php @@ -24,4 +24,4 @@ $HTML = $POST['BODY']['HTML'](); <?php foreach($POST['FILE']['LIST'] as $fileURL): ?> <media:content url="<?=$fileURL?>" medium="image"></media:content> <?php endforeach; ?> -</item>
\ No newline at end of file +</item> diff --git a/theme/default/html/feed/main.php b/theme/default/html/feed/main.php index 588ee02..317bd31 100644 --- a/theme/default/html/feed/main.php +++ b/theme/default/html/feed/main.php @@ -49,4 +49,4 @@ switch($FEED['TYPE']) { <?php echo $item ?> <?php endforeach; ?> </channel> -</rss>
\ No newline at end of file +</rss> |