vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Last Post Date (https://vborg.vbsupport.ru/showthread.php?t=96167)

Paul M 09-13-2005 07:42 AM

What date is $last['lastpost'] ?

(This is the code from the plugin)

Code:

$last['lastpost'] = vbdate($vboptions['dateformat'], $last['lastpost'], true);

theArchitect 09-13-2005 07:45 AM

Quote:

Originally Posted by Paul M
What date is $last['lastpost'] ?

(This is the code from the plugin)

Code:

$last['lastpost'] = vbdate($vboptions['dateformat'], $last['lastpost'], true);

I am not sure. It was the template info that I was told to use along with the plug-in.

Paul M 09-13-2005 07:47 AM

Okay, let me rephrase - have you tried using $last[lastpost] as it would seem to suggest it is what you want.

theArchitect 09-13-2005 07:52 AM

Quote:

Originally Posted by Paul M
Okay, let me rephrase - have you tried using $last[lastpost] as it would seem to suggest it is what you want.

Sorry, my mis-understanding.

If you check the template code I quoted above I am currently using this, but nothing is displaying.

Code:

<div><phrase 1="member.php?find=lastposter&amp;t=$last[threadid]" 2="$last[lastposter]">$vbphrase[by_x]</phrase></div> $last[lastpost]&nbsp<a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$last[threadid]" title="<phrase 1="$last[title]">$vbphrase[go_first_unread_in_thread_x]</phrase>"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="<phrase  1="$last[title]">$vbphrase[go_first_unread_in_thread_x]</phrase>" border="0" /></a>
This code should display who posted, the date/time and the Go To Last Unread post button. It does everything except the date and time.

Boofo 09-13-2005 08:02 AM

In the plug-in, try changing this line:

PHP Code:

 $last['lastpost'] = vbdate($vboptions['dateformat'], $last['lastpost'], true); 

to this:

PHP Code:

 $last['lastpost'] = vbdate($vbulletin->options['dateformat'], $last['lastpost'], true); 

and see if that helps at all.

Logikos 09-13-2005 08:09 AM

good eye booboo, I didn't even notice that... I guess 3.0 is still stuck in my physie

Boofo 09-13-2005 08:12 AM

Lucky guess is all, as with most of my coding. ;)

theArchitect 09-13-2005 08:27 AM

1 Attachment(s)
Many thanks kind Sir. That has got the date displaying.

However, the time is not next to the date, as in the forum view. Any chance of stretching a favour and asking how I correct this?

You will see from the screen shots what I mean. The first is the view in the Top 10 list, but the second is taken from the forum view and is how I would like it to look.

Boofo 09-13-2005 08:29 AM

Quote:

Originally Posted by theArchitect
Many thanks kind Sir. That has got the date displaying.

However, the time is not next to the date, as in the forum view. Any chance of stretching a favour and asking how I correct this?

You will see from the screen shots what I mean. The first is the view in the Top 10 list, but the second is taken from the forum view and is how I would like it to look.

Just do a nowrap in the template for that line. ;)

Logikos 09-13-2005 08:34 AM

Change that new code BooBoo gave you which was:

PHP Code:

$last['lastpost'] = vbdate($vbulletin->options['dateformat'], $last['lastpost'], true); 

To this:
PHP Code:

$last['lastpost_date'] = vbdate($vbulletin->options['dateformat'], $last['lastpost'], true);  
$last['lastpost_time'] = vbdate($vbulletin->options['timeformat'], $last['lastpost'], true); 

Then you can use $last[lastpost_date] for the date, and $last[lastpost_time] for the time in your template... :)


All times are GMT. The time now is 10:01 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01987 seconds
  • Memory Usage 1,748KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (4)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete