In the Forumhome and Forumdisplay templates they have been renamed to .png and sizes. The issue is no matter how many times you change your image path to your style folder the way they are coded on the templates still revert to the image directory of vB4 default.
Example on Forumdisplay:
Code:
<dl id="icon_legends">
<dt><img src="images/statusicon/thread_new-16.png" alt="{vb:rawphrase new_posts}" /></dt><dd>{vb:rawphrase new_posts}</dd>
<dt><img src="images/statusicon/thread-16.png" alt="{vb:rawphrase no_new_posts}" /></dt><dd>{vb:rawphrase no_new_posts}</dd>
<vb:if condition="$vboptions['usehotthreads']">
<dt><img src="images/statusicon/thread_hot_new-16.png" alt="{vb:rawphrase more_than_x_replies_or_y_views, {vb:raw vboptions.hotnumberposts}, {vb:raw vboptions.hotnumberviews}}" /></dt><dd>{vb:rawphrase hot_thread_with_new_posts}</dd>
<dt><img src="images/statusicon/thread_hot-16.png" alt="{vb:rawphrase more_than_x_replies_or_y_views, {vb:raw vboptions.hotnumberposts}, {vb:raw vboptions.hotnumberviews}}" /></dt><dd>{vb:rawphrase hot_thread_with_no_new_posts}</dd>
</vb:if>
<dt><img src="images/statusicon/thread_lock-16.png" alt="{vb:rawphrase closed_thread}" /></dt><dd>{vb:rawphrase thread_is_closed}</dd>
<dt><img src="images/statusicon/thread_dot-16.png" alt="{vb:rawphrase thread_contains_a_message_written_by_you}" /></dt><dd>{vb:rawphrase you_have_posted_in_this_thread}</dd>
The img src still points to the "image" directory and won't change unless you change the path or add the
Code:
{vb:stylevar imgdir_statusicon}
to these lines of code.
You will have to go through these 2 templates and find all that are coded with "images/statusicon" and fix them up to see the correct images.
Hope this helps