index.template.php
Find:
// Version: 1.1; index
Replace with:
// Version: 1.1.5; index
Find:
if ($context['user']['is_guest'])
$options['collapse_header'] = !empty($_COOKIE['upshrink']);
Replace with:
if ($context['user']['is_guest'])
{
$options['collapse_header'] = !empty($_COOKIE['upshrink']);
$options['collapse_header_ic'] = !empty($_COOKIE['upshrinkIC']);
}
Post.template.php
Find:
// Version: 1.1; Post
Replace with:
// Version: 1.1.5; Post
Find:
<td class="windowbg" width="100%">
<div id="preview_body" class="post">', empty($context['preview_message']) ? '' : $context['preview_message'], '</div>
Replace with:
<td class="post" width="100%" id="preview_body">
', empty($context['preview_message']) ? str_repeat('<br />', 5) : $context['preview_message'], '
Recent.template.php
Find:
// Version: 1.1; Recent
Replace with:
// Version: 1.1.5; Recent
Find:
$button_set['delete'] = array('text' => 31, 'image' => 'delete.gif', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . $txt[154] . '?\');"', 'url' => $scripturl . '?action=recent;delete=' . $post['id'] . ';sesc=' . $context['session_id']);
Replace with:
$button_set['delete'] = array('text' => 31, 'image' => 'delete.gif', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . $txt[154] . '?\');"', 'url' => $scripturl . '?action=deletemsg2;msg=' . $post['id'] . ';topic=' . $post['topic'] . ';recent;sesc=' . $context['session_id']);
Register.template.php
Find:
// Version: 1.1.2; Register
Replace with:
// Version: 1.1.5; Register
Find:
<td width="40%" align="top">
Replace with:
<td width="40%" valign="top">
style.css
Find:
.windowbg
{
Replace with:
.windowbg, #preview_body
{
Added to ReadMe: Graphics and Themes - Important (http://www.simplemachines.org/community/index.php?topic=82003.0).