MyBB Community Forums

Full Version: Locked threads icon - where in templates?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm looking for the locked thread icon (the same one that is shown at the bottom of the index in the key). I've got the one in the key, but I can't find the correct template to edit where it grabs the default icon for the actual threads themselves.

Which template should I be looking in?

----
This is for a skin currently viewable only to staff of chroniclesofthedas.draebox.com
----
The icon shown in index is not thread legend, its forum legend.

The name is dynamic, you can't change the name (you can change extension, ofcourse).

The template is:
'forumbit_depth2_forum'

The variable to determine filename from the three is:
'{$lightbulb['folder']}.gif'
This is the coding on that particular template:

<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="http://i6.photobucket.com/albums/y244/j9wolf/COTSkin1/FM1_60px.png" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>

Tried changing the only lightbulb reference there to no effect.
Don't try to change lightbulb. Its not a filename. Its a variable for setting the right name after making decision of the forum state depending on the current user's view. The fixed (hardcoded) filenames are:
on.gif, off.gif & offlock.gif

You can't change lightbulb from template. You CAN'T.
So is there a way to direct the multi-quote button to show a different image file when activated for a post?