diff options
author | Arno Richter <oelna@oelna.de> | 2022-12-16 14:16:07 +0100 |
---|---|---|
committer | Arno Richter <oelna@oelna.de> | 2022-12-16 14:16:07 +0100 |
commit | 057cace8b32e6c3d105695b517eae262071601f4 (patch) | |
tree | 1bf00eb2c3fa76698cf654493f181ddc3e6f72a7 | |
parent | 3668e75232508f70e74c57f848c8a9c816330ce8 (diff) | |
download | microblog-057cace8b32e6c3d105695b517eae262071601f4.tar.gz microblog-057cace8b32e6c3d105695b517eae262071601f4.tar.bz2 microblog-057cace8b32e6c3d105695b517eae262071601f4.zip |
changed container on subpages to match timeline template.
-rw-r--r-- | templates/single.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/single.inc.php b/templates/single.inc.php index 29184d4..b858181 100644 --- a/templates/single.inc.php +++ b/templates/single.inc.php @@ -102,7 +102,7 @@ <?php endif; ?> </ul><?php endif; ?> </nav> - <p class="post-content"><?= nl2br(autolink($post['post_content'])) ?></p> + <div class="post-content"><?= nl2br(autolink($post['post_content'])) ?></div> <?php if($action == 'delete'): ?> <form action="" method="post" class="delete"> <input type="hidden" name="action" value="delete" /> |