diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-03-29 11:09:33 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-29 11:09:33 +0100 |
commit | fd16a50baf8fe18b646a31a4e46278b589912ed9 (patch) | |
tree | 0c60541b2523d67e1288a81886cfe36c8666c04c /phpBB/includes | |
parent | 70a211022300db0a8414ece32d962b327c8910b4 (diff) | |
parent | 96ac2790fc1793d164ebd49fb0cbc703cb831f4a (diff) | |
download | forums-fd16a50baf8fe18b646a31a4e46278b589912ed9.tar forums-fd16a50baf8fe18b646a31a4e46278b589912ed9.tar.gz forums-fd16a50baf8fe18b646a31a4e46278b589912ed9.tar.bz2 forums-fd16a50baf8fe18b646a31a4e46278b589912ed9.tar.xz forums-fd16a50baf8fe18b646a31a4e46278b589912ed9.zip |
Merge remote-tracking branch 'vsephpbb/ticket/12300' into develop-ascraeus
* vsephpbb/ticket/12300:
[ticket/12300] Make only red topic/forum row icons clickable to unread posts
[ticket/12300] Fix broken link to last post in topic subscriptions list
[ticket/12300] Fix alignment of clickable icons
[ticket/12300] Make all topic row icons clickable
[ticket/12300] Rename new class for row icon links
[ticket/12300] Make topic icon links clickable to newest unread posts
[ticket/12300] Revert topic title links back to default behavior
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/ucp/ucp_main.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_main.php b/phpBB/includes/ucp/ucp_main.php index f0ce21fb48..b4b14b11d7 100644 --- a/phpBB/includes/ucp/ucp_main.php +++ b/phpBB/includes/ucp/ucp_main.php @@ -354,6 +354,8 @@ class ucp_main 'LAST_POST_AUTHOR_FULL' => get_username_string('full', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']), 'U_LAST_POST_AUTHOR' => get_username_string('profile', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']), + 'S_UNREAD_FORUM' => $unread_forum, + 'U_LAST_POST' => $last_post_url, 'U_VIEWFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id'])) ); |