The are the template changes since 3.5.0 'Gold' ONLY
If you are not running 3.5.0 'Gold' yet, there are significantly more changed templates than are listed here. Use "Find Updated Templates" to find the templates that have changed and incorporate those changes. You may even wish to start with a default style!
Note:
You need to only look through this post for templates you have customized. You do not need to take any action to ensure that your uncustomized templates are the latest versions.
If you find a template you have customized in this list, you will likely want to include the changes made here. However, this is not always required. Under each change listed here, you will see "requires revert?" This refers to whether the changes are mandatory (yes). If the changes are mandatory, things will break if you do not incorporate the changes made. It is strongly recommended that you revert and recustomize any templates that say they require a revert.
Additionally, you may wish to use the "Find Updated Template" feature in the control panel to find templates that have been changed since your last edit to them.
-----------------------------------------------------
pm_showpm
Code:
if (document.attachEvent)
{
document.attachEvent('onload', askReceipt);
}
else if(document.addEventListener)
{
document.addEventListener('load', askReceipt, true);
}
to
Code:
if (window.attachEvent)
{
window.attachEvent('onload', askReceipt);
}
else if(window.addEventListener)
{
window.addEventListener('load', askReceipt, false);
}
Requires Revert: YES
headinclude
Added an option to disable AJAX features, mainly due to (currently unfixable) problems on some non-English boards.
Requires revert? Yes, if you want to use the new option.
reputation
repurtationbit
reputation_yourpost
postbit
postbit_legacy
The reputation has been moved from using a javascript popup to using the same browser window.
Requires Revert? YES
SHOWTHREAD
Change FIRST instance of
HTML Code:
<if condition="$show['approvepost']">
to
HTML Code:
<if condition="$show['inlinemod']">
Requires Revert? If your mods do not have moderate posts permission then they won't have access to the post moderation tools unless this change is made.- forumhome_forumbit_level1_post
- forumhome_forumbit_level2_post
- MEMBERINFO
- memberlist_resultsbit
- modifyoptions
- navbar
- postbit
- postbit_deleted
- postbit_ignore
- postbit_ignore_global
- postbit_legacy
- postbit_legacy
- showgroups_usergroupbit
- SHOWTHREAD
- threadbit
Added rel="nofollow" to various links to try to convince search bots not to go wandering into no permission errors.
Requires revert? No
pm_emptyfolder
Find
HTML Code:
<input type="hidden" name="folderid" value="$folderid" />
Add this afterwards
HTML Code:
<input type="hidden" name="dateline" value="$dateline" />
Requires Revert: No, but refer to bug 1593
threadadmin_deleteposts
threadadmin_deletethreads
Added several conditionals to better control which delete options are shown to the moderator. The moderator can never use a delete option that they don't have permission to but now those options will not be displayed when they have selected posts/threads that don't allow an option (based on forum permission).
Requires Revert: No, but it is recommended
editor_toolbar_on
HTML Code:
<td class="popup_feedback"><div id="{$editorid}_size_out"> </div></td>
to
HTML Code:
<td class="popup_feedback"><div id="{$editorid}_size_out" style="width:25px"> </div></td>
Requires Revert: No
threadadmin_moveposts [Bug 1697]
Change
HTML Code:
<input type="text" class="bginput" name="title" value="" size="50" maxlength="85" />
to
HTML Code:
<input type="text" class="bginput" name="title" value="$post[title]" size="50" maxlength="85" />
Requires Revert? No
modifysignature
pm_newpm
Fix the problem with the smilie fieldset overflowing the parent table width.
Requires Revert? No, the fix is purely aesthetic.
SHOWTHREAD
Change
HTML Code:
<if condition="$show['inlinemod']">
<div>
<strong>$vbphrase[moderation]</strong>
to
HTML Code:
<if condition="$show['inlinemod']">
<div class="smallfont" style="text-align:$stylevar[left]; white-space:nowrap; float:$stylevar[right]">
<if condition="$show['pagenav']"><br /></if><strong>$vbphrase[moderation]</strong><br />
Change
HTML Code:
</select>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="threadid" value="$threadinfo[threadid]" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="url" value="$url" />
<input type="submit" class="button" id="inlinego" value="$vbphrase[go]" />
to
HTML Code:
</select><input type="submit" class="button" id="inlinego" value="$vbphrase[go]" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="threadid" value="$threadinfo[threadid]" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="url" value="$url" />
Requires Revert: No
FORUMDISPLAY
Change
HTML Code:
<if condition="$pagenav OR $show['inlinemod']">
<td class="smallfont" align="$stylevar[right]">$pagenav
<if condition="$show['inlinemod']">
<br /><em>$vbphrase[moderation]</em>
to
HTML Code:
<if condition="$show['pagenav'] OR $show['inlinemod']">
<td align="$stylevar[right]">$pagenav
<if condition="$show['inlinemod']">
<div class="smallfont" style="text-align:$stylevar[left]; white-space:nowrap; float:$stylevar[right]">
<if condition="$show['pagenav']"><br /></if><strong>$vbphrase[moderation]</strong><br />
Change
HTML Code:
</select>
<input type="submit" class="button" id="inlinego" value="$vbphrase[go]" />
to
HTML Code:
</select><input type="submit" class="button" id="inlinego" value="$vbphrase[go]" />
</div>
Requires Revert: No
Bookmarks