Changeset 749
- Timestamp:
- 12/25/07 12:00:11 (13 months ago)
- Location:
- team/michiel/input_formats
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
team/michiel/input_formats
- Property svnmerge-integrated changed from /trunk:1-735 to /trunk:1-748
-
team/michiel/input_formats/CHANGELOG
r671 r749 1 1 MvBlog-trunk: 2 2 ----------- 3 4 MvBlog 3.0.1: 5 ------------- 6 * Fixed links to post readmore and comments 7 * Dont show settings link when logged in as author 8 9 MvBlog 3.0: 10 ----------- 3 11 * Added category icons 12 * new version of tinymce 13 * Added user settings interface 14 * Users can now decide wether to show their email address on comments 15 * Added import from WordPress blogsoftware 16 * inactive users can now be deleted 4 17 5 18 MvBlog 2.3: -
team/michiel/input_formats/common/mvblog.php
r734 r749 274 274 if ($this->limit_text($text)) { 275 275 echo $text; 276 ?><br /><br /><a href="<?php echo $link; ?>" class="link_readmore"><?php echo gettext("read more"); ?></a><?php276 ?><br /><br /><a href="<?php echo sprintf($link, $row["id"]); ?>" class="link_readmore"><?php echo gettext("read more"); ?></a><?php 277 277 } else { 278 278 echo $text; … … 283 283 <div class="log_post_foot"> 284 284 <?php if ($row["aside"] !=1) { ?> 285 <span class="log_post_commentslink"><a href="<?php echo $link; ?>#comments"><?php echo sprintf(ngettext("%d Comment", "%d Comments", $comments_count[0]), $comments_count[0]); ?></a><br /></span>285 <span class="log_post_commentslink"><a href="<?php echo sprintf($link, $row["id"]); ?>#comments"><?php echo sprintf(ngettext("%d Comment", "%d Comments", $comments_count[0]), $comments_count[0]); ?></a><br /></span> 286 286 <span class="log_post_author"><?php echo gettext("By").": <i>".htmlspecialchars($this->authors[$row["authors_id"]]["fullname"]); ?></i></span> 287 287 <span class="log_post_date">| <?php echo gettext("On").": <i>".date("d-m-Y H:i", $row["date"]); ?></i></span> … … 807 807 <li class="default_list_item"><a href="admin/index.php" title="admin"><?php echo gettext("Admin"); ?></a></li> 808 808 <?php } ?> 809 <?php if (array_key_exists("blog_user", $_SESSION) ) { ?>809 <?php if (array_key_exists("blog_user", $_SESSION) && !array_key_exists("author_id", $_SESSION)) { ?> 810 810 <li class="default_list_item"><a href="index.php?action=user_settings" title="settings"><?php echo gettext("Settings"); ?></a></li> 811 811 <?php } ?>
