Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: A.M.A on March 31, 2005, 04:40:28 PM

Title: (1.0.3) , (1.0.4) and (1.0.5) changes
Post by: A.M.A on March 31, 2005, 04:40:28 PM
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>
Title: (1.0.4) changes
Post by: A.M.A on June 09, 2005, 06:01:26 PM
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)
Title: Re: (1.0.5) changes
Post by: A.M.A on September 15, 2005, 10:01:55 AM
1.0.5 changes

No changes.