-
Improvement
-
Resolution: Fixed
-
Minor
-
3.4
-
MOODLE_34_STABLE
-
MOODLE_33_STABLE, MOODLE_34_STABLE
-
MDL-61010-master -
Hi,
"Standard forum for general use" when there are new posts scrolls down to first new post.
But blog-like forum doesn't
There is a missing link "Unread".
See suggested fix below.
# diff lib_orig.php lib.php
|
3520c3520
|
< $replystring .= get_string('unreadpostsone', 'forum'); |
---
|
> $replystring .= html_writer::link($discussionlink.'#unread', get_string('unreadpostsone', 'forum')); |
3522c3522
|
< $replystring .= get_string('unreadpostsnumber', 'forum', $discussion->unread); |
---
|
> $replystring .= html_writer::link($discussionlink.'#unread', get_string('unreadpostsnumber', 'forum', $discussion->unread)); |