The-Undead |
02-23-2010 12:19 PM |
Hello Coroner, firstly, thank you very much for porting this excellent mod' to vB4, it must have taken a great deal of your free time and I appreciate your efforts, thank you.
I hate to have to bring it up but I couldn't get the postbit_legacy bit below to show the bgdeveloper.gif:
Code:
<vb:if condition="$post['show_installed']">
<vb:if condition="$post['show_developer']">
<div style="height: 28px;margin-top: 10px;margin-left: 10px;background:url({vb:stylevar imgdir_misc}/bgdeveloper.gif) left no-repeat" align="right"> </div>
<vb:else />
<div style="height: 30px;margin-top: 10px;margin-left: 10px;background:url({vb:stylevar imgdir_misc}/bginstalled.gif) left no-repeat" align="right"> </div>
</vb:if>
</vb:if>
I instead am using this:
Code:
<vb:if condition="in_array($thread['forumid'], array(20,21)) && $thread['postuserid'] == $post['userid']">
<div style="height: 28px;margin-top: 10px;margin-left: 10px;background:url({vb:stylevar imgdir_misc}/bgdeveloper.gif) left no-repeat" align="right"> </div>
</vb:if>
<vb:if condition="$post['show_installed']">
<div style="height: 30px;margin-top: 10px;margin-left: 10px;background:url({vb:stylevar imgdir_misc}/bginstalled.gif) left no-repeat" align="right"> </div>
</vb:if>
My solution is a bit rough and ready but just letting you know the bgdeveloper.gif doesn't show with the original code in place. If you can find the time can you post a clean fix please.
Thanks again for this fabulous mod.
|