diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-07-14 20:55:49 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-07-14 20:55:49 +0200 |
commit | e7e98f1de5c394859284f031f2a4f0c47534b311 (patch) | |
tree | ce4bbebcac4517ed8d11788522abd96d04081eb6 /phpBB/includes/ucp | |
parent | da256b33d93978f672aa07e0e94be585a7d1d2ee (diff) | |
parent | 954b3c348454ee41eb8da189794ac34ffdd4a115 (diff) | |
download | forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.gz forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.bz2 forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.xz forums-e7e98f1de5c394859284f031f2a4f0c47534b311.zip |
Merge branch 'ticket/nickvergessen/7720' into develop-olympus
* ticket/nickvergessen/7720:
[ticket/7720] Fix alternative image-description for unread posts.
Diffstat (limited to 'phpBB/includes/ucp')
-rw-r--r-- | phpBB/includes/ucp/ucp_main.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_main.php b/phpBB/includes/ucp/ucp_main.php index 6ac2412ef0..a6f71669ce 100644 --- a/phpBB/includes/ucp/ucp_main.php +++ b/phpBB/includes/ucp/ucp_main.php @@ -119,7 +119,7 @@ class ucp_main $unread_topic = (isset($topic_tracking_info[$topic_id]) && $row['topic_last_post_time'] > $topic_tracking_info[$topic_id]) ? true : false; $folder_img = ($unread_topic) ? $folder_new : $folder; - $folder_alt = ($unread_topic) ? 'NEW_POSTS' : (($row['topic_status'] == ITEM_LOCKED) ? 'TOPIC_LOCKED' : 'NO_NEW_POSTS'); + $folder_alt = ($unread_topic) ? 'UNREAD_POSTS' : (($row['topic_status'] == ITEM_LOCKED) ? 'TOPIC_LOCKED' : 'NO_UNREAD_POSTS'); if ($row['topic_status'] == ITEM_LOCKED) { @@ -318,7 +318,7 @@ class ucp_main else { $folder_image = ($unread_forum) ? 'forum_unread' : 'forum_read'; - $folder_alt = ($unread_forum) ? 'NEW_POSTS' : 'NO_NEW_POSTS'; + $folder_alt = ($unread_forum) ? 'UNREAD_POSTS' : 'NO_UNREAD_POSTS'; } // Create last post link information, if appropriate |