Didn't work on my 4.0.6.
By The way, in vB4.0.6 the following codes are replaced with the code shown underneath...
OP's original code in:
(SEARCH _RESULTS_POSTBIT)
Code:
<vb:if condition="$show['inlinemod']">
<!-- fourth block -->
<label class="threadimod td">
<input type="checkbox" id="post_imod_checkbox_{vb:raw post.postid}" name="imodcheck[{vb:raw post.postid}]" />
</label>
</vb:if>
In 4.0.6 it's replaced with:
Code:
<vb:if condition="$show['inlinemod']">
<span class="nodecontrols">
<input type="checkbox" id="post_imod_checkbox_{vb:raw post.postid}" name="imodcheck[{vb:raw post.postid}]" />
</span>
</label>
</vb:if>
OP's Original code in:
(SEARCH_COMMON)
Code:
<vb:if condition="$show['nocache']">
<div class="blockrow">
<label for="cb_nocache">
<input type="checkbox" name="nocache" value="1" id="cb_nocache" {vb:raw nocachechecked}/> {vb:rawphrase do_not_use_cached_results}
</label>
</div>
</vb:if>
In 4.0.6 it's replaced with:
Code:
<vb:if condition="$show['nocache']">
<div class="blockrow">
<label for="cb_nocache" class="rightcol">
<input type="checkbox" name="nocache" value="1" id="cb_nocache" tabindex="1" {vb:raw nocachechecked}/> {vb:rawphrase do_not_use_cached_results}
</label>
</div>
</vb:if>
OP's original code in:
(SEARCH_INPUT_POST)
Code:
<vb:if condition="$show['nocache']">
<div class="blockrow">
<label for="cb_nocache">
<input type="checkbox" name="nocache" value="1" id="cb_nocache" {vb:raw nocachechecked}/>{vb:rawphrase do_not_use_cached_results}
</label>
</div>
</vb:if>
In 4.0.6 it's replaced with:
Code:
<vb:if condition="$show['nocache']">
<div class="blockrow">
<label for="cb_nocache" class="rightcol">
<input type="checkbox" name="nocache" value="1" id="cb_nocache" tabindex="1" {vb:raw nocachechecked}/> {vb:rawphrase do_not_use_cached_results}
</label>
</div>
</vb:if>