I'm using this code in the editor_toolbar_on template. I don't get the M media.gif image. If I take out the if condition, the image does show up.
In my anymedia bb code options, it is set to use the system. Any ideas?
Quote:
<!-- AnyMedia BBCode By Crist Chsu Start -->
<if condition="$show['anymedia_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_{$vboptions[anymediatag]}"><img src="$stylevar[imgdir_editor]/media.gif" width="21" height="20" alt="$vbphrase[wrap_media_tags]" /></div></td>
</if>
<!-- AnyMedia BBCode By Crist Chsu End -->
|
I was able to get it by changing the line <if condition="$show['anymedia_bbcode']"> to <if condition="$vboptions['anymediaenable']">
However, I don't know if that is actually the fix, or just a workaround.