1.0.3 changes
If you are already using any of the following themes:
Curve, defaultXT, Longhorn, orangeena, Spaceman, XP, xtEnhanced
I've updated all of them to be compatible with the latest version of SMF 1.0.3. You may install the updated zip over your theme or simply do the following changes manually:
1. Display.template.php (all themes)
a.
// Version: 1.0; Display
replace with:
// Version: 1.0.3; Display
b.
<input type="hidden" name="notify" value="', $context['is_marked_notify'] || empty($options['auto_notify']) ? '0' : '1', '" />
replace with:
<input type="hidden" name="notify" value="', $context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
2. Search.template.php (only defaultXT theme)
<td style="padding-top: 2ex; colspan="2"><b>', $txt['search_order'], ':</b></td>
replace with:
<td style="padding-top: 2ex;" colspan="2"><b>', $txt['search_order'], ':</b></td>
1.0.4 changes
Only for the following themes:
CurveSMF - defaultXT - Firefox - SMFone
Profile.template.php
from:
// Version: 1.0.1; Profile
to:
// Version: 1.0.4; Profile
from:
if (files[i].indexOf(cat.options[cat.selectedIndex].value) > -1)
to:
if (files[i].indexOf(cat.options[cat.selectedIndex].value) == 0)
1.0.5 changes
No changes.