|
@@ -107,7 +107,7 @@ function template_main()
|
|
|
// If this category even can collapse, show a link to collapse it.
|
|
|
if ($category['can_collapse'])
|
|
|
echo '
|
|
|
- <a class="collapse" href="', $category['collapse_href'], '">', $category['collapse_image'], '</a>';
|
|
|
+ <a class="collapse" href="', $category['collapse_href'], '" title="' ,$category['is_collapsed'] ? $txt['show'] : $txt['hide'] ,'">', $category['collapse_image'], '</a>';
|
|
|
|
|
|
if (!$context['user']['is_guest'] && !empty($category['show_unread']))
|
|
|
echo '
|
|
@@ -174,7 +174,7 @@ function template_main()
|
|
|
// Show some basic information about the number of posts, etc.
|
|
|
echo '
|
|
|
</td>
|
|
|
- <td class="stats windowbg">
|
|
|
+ <td class="windowbg stats">
|
|
|
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
|
|
|
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
|
|
|
</p>
|
|
@@ -371,7 +371,7 @@ function template_info_center()
|
|
|
// title, href, is_last, can_edit (are they allowed?), modify_href, and is_today.
|
|
|
foreach ($context['calendar_events'] as $event)
|
|
|
echo '
|
|
|
- ', $event['can_edit'] ? '<a href="' . $event['modify_href'] . '" title="' . $txt['calendar_edit'] . '"><img src="' . $settings['images_url'] . '/icons/calendar_modify.png" alt="*" /></a> ' : '', $event['href'] == '' ? '' : '<a href="' . $event['href'] . '">', $event['is_today'] ? '<strong>' . $event['title'] . '</strong>' : $event['title'], $event['href'] == '' ? '' : '</a>', $event['is_last'] ? '<br />' : ', ';
|
|
|
+ ', $event['can_edit'] ? '<a href="' . $event['modify_href'] . '" title="' . $txt['calendar_edit'] . '"><img src="' . $settings['images_url'] . '/icons/calendar_modify.png" alt="*" class="centericon" /></a> ' : '', $event['href'] == '' ? '' : '<a href="' . $event['href'] . '">', $event['is_today'] ? '<strong>' . $event['title'] . '</strong>' : $event['title'], $event['href'] == '' ? '' : '</a>', $event['is_last'] ? '<br />' : ', ';
|
|
|
}
|
|
|
|
|
|
echo '
|