diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-07-11 12:47:08 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-07-11 12:47:08 +0200 |
commit | 015effb244be30eeee34a61080216de1ec2e2625 (patch) | |
tree | 54c884fb5555f10de8b16c8735539e5deb76192e /tpl/blog | |
parent | 822a630601960797266f0bae6aea3fdc3a141d5c (diff) | |
download | Bits-015effb244be30eeee34a61080216de1ec2e2625.tar.gz Bits-015effb244be30eeee34a61080216de1ec2e2625.zip |
Minor usability & presentation changes.
Diffstat (limited to 'tpl/blog')
-rw-r--r-- | tpl/blog/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/blog/index.php b/tpl/blog/index.php index c04b4c0..cd458c1 100644 --- a/tpl/blog/index.php +++ b/tpl/blog/index.php @@ -12,7 +12,7 @@ echo '<div class="ordering_links">' . filters_html_full() . '</div>'; foreach ($posts as $post) { echo '<div class="blog_post">'; - echo '<div class="small_right">Written by ' . $post['owner']; + echo '<div class="small_right">by ' . $post['owner']; if ($can_edit && $post['owner_id'] == $user['id']) echo ' | <a href="edit-blog-' . $post['id'] . '">edit</a>'; if ($can_delete && $post['owner_id'] == $user['id']) |