dates in post bit legacy

hi,

I don't understand why dates do not appear. (only in the first message).

UJ4.jpg

I use the same postbit legacy in another forum, but the visualization is ok.

Ukh.jpg

can you help me? the skin version is the last and vbulletin is version 3.7.2.

thank you very much. :)

postbit_legacy.zip

Attachment: postbit_legacy.zip

#507748

Seems your templates are different than the default ones, take a look at the pic below, there is a in the wrong spot.

post-1-1219367292_thumb.png

Picture 1.png
Picture 1.png

#507776

thank you. :)

Even if I use the default postbit legacy, the problem persists. no dates. (if I use the vbulletin default skin I see dates). :(

the date appears only if I set "Automatically Quote Post/Thread Title" to "Yes" in the admin control panel. (but this happens only for the new posts.)

Where is my mistake? :slant:

#507799

Alright, that does seem to be a bug, I guess since no one ever messes with the title of replies it went un-noticed.

Simple fix though,

postbit_legacy

Find

						<td align="left" $post[scrolltothis]>
<if condition="$show['messageicon'] OR $post['title'] OR $show['announcement']">
<!-- icon and title -->
<!--<if condition="$show['messageicon']"><img class="inlineimg" src="../../unavailable.html" alt="$post[icontitle]" border="0" /></if>-->
<if condition="$post['title']"><strong><a class="post-title" href="../../unavailable.html" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]">$post[title]</a>,</strong> </if>
<!-- / icon and title -->
<if condition="$show['announcement']">
<span title="$post[statustitle]">Posted <span class="time"><phrase 1="$post[startdate]" 2="$post[enddate]">$vbphrase[x_until_y]</phrase></span></span>
<else />
<!-- status icon and date -->
<span title="$post[statustitle]"><a name="post$post[postid]"></a>Posted <span class="time">$post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if></span></span>
$post[firstnewinsert]
<!-- / status icon and date -->
</if>
<if condition="$show['reportlink']"><span class="desc2"> | <a href="../../unavailable.html" rel="nofollow" title="$vbphrase[report_bad_post]">Report</a></span></if>
</if>
</td>

Replace with

						<td align="left" $post[scrolltothis]>
<!-- icon and title -->
<!--<if condition="$show['messageicon']"><img class="inlineimg" src="../../unavailable.html" alt="$post[icontitle]" border="0" /></if>-->
<if condition="$post['title']"><strong><a class="post-title" href="../../unavailable.html" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]">$post[title]</a>,</strong> </if>
<!-- / icon and title -->
<if condition="$show['announcement']">
<span title="$post[statustitle]">Posted <span class="time"><phrase 1="$post[startdate]" 2="$post[enddate]">$vbphrase[x_until_y]</phrase></span></span>
<else />
<!-- status icon and date -->
<span title="$post[statustitle]"><a name="post$post[postid]"></a>Posted <span class="time">$post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if></span></span>
$post[firstnewinsert]
<!-- / status icon and date -->
</if>
<if condition="$show['reportlink']"><span class="desc2"> | <a href="../../unavailable.html" rel="nofollow" title="$vbphrase[report_bad_post]">Report</a></span></if>
</td>

That should do it.

#507831

Dear Tim, I really thank you. You have solved my problem! :)

#507839