diff options
author | Thomas Lange <code@nerdmind.de> | 2017-03-02 13:09:44 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-03-02 13:13:50 +0100 |
commit | ac66d6889e6b5b19130754341c2736cfca301549 (patch) | |
tree | b43853f344257ec67411a8b9b6afb31c812453cc /template/standard | |
parent | 6f8a9a170536e4d5c32d4cbd751decd69cd5f462 (diff) | |
download | blog-ac66d6889e6b5b19130754341c2736cfca301549.tar.gz blog-ac66d6889e6b5b19130754341c2736cfca301549.tar.xz blog-ac66d6889e6b5b19130754341c2736cfca301549.zip |
Unnecessary line breaks removed.
Diffstat (limited to 'template/standard')
-rw-r--r-- | template/standard/html/page/item.php | 2 | ||||
-rw-r--r-- | template/standard/html/post/item.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/standard/html/page/item.php b/template/standard/html/page/item.php index 29ab9cf..b3b4ebf 100644 --- a/template/standard/html/page/item.php +++ b/template/standard/html/page/item.php @@ -10,7 +10,7 @@ <li class="item-list-li page"> <header> <h2> - <a href="<?=$PAGE['URL']?>"><?=escapeHTML($PAGE['ATTR']['NAME'])."\n"?></a> + <a href="<?=$PAGE['URL']?>"><?=escapeHTML($PAGE['ATTR']['NAME'])?></a> <time class="brackets info" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->template('date_format'))?></time> </h2> </header> diff --git a/template/standard/html/post/item.php b/template/standard/html/post/item.php index ab00624..b02a018 100644 --- a/template/standard/html/post/item.php +++ b/template/standard/html/post/item.php @@ -10,7 +10,7 @@ <li class="item-list-li post"> <header> <h2> - <a href="<?=$POST['URL']?>"><?=escapeHTML($POST['ATTR']['NAME'])."\n"?></a> + <a href="<?=$POST['URL']?>"><?=escapeHTML($POST['ATTR']['NAME'])?></a> <time class="brackets info" datetime="<?=$POST['ATTR']['TIME_INSERT']?>"><?=parseDatetime($POST['ATTR']['TIME_INSERT'], $Language->template('date_format'))?></time> </h2> </header> |