boardom Forum Index boardom
b2 message board
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Date Appear Once

 
Post new topic   Reply to topic    boardom Forum Index -> PHP help
View previous topic :: View next topic  
Author Message
GamerZ



Joined: 15 May 2002
Posts: 537
Location: Singapore

PostPosted: Sat May 24, 2003 11:25 am    Post subject: Date Appear Once Reply with quote

Does anyone know how does b2 makes the date appear once a day?

Maybe an explaination of the code would help me. =D
_________________

++ GamerZ.Per.Sg - Complex Simplicity
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
stevem



Joined: 15 Mar 2003
Posts: 367

PostPosted: Sat May 24, 2003 9:07 pm    Post subject: Reply with quote

It's the function the_date() in b2-include/b2template.functions.php

In particular the lines
Code:
$the_date = '';
if ($day != $previousday) {
   $the_date .= $before;
   ... (code to get the date)
   $the_date .= $after;
   $previousday = $day;
}

means that the variable $the_date is blank unless the current day is not the same as the previous day ie a day has gone by.
$the_date is then either returned or printed.
Back to top
View user's profile Send private message
GamerZ



Joined: 15 May 2002
Posts: 537
Location: Singapore

PostPosted: Sun May 25, 2003 8:47 am    Post subject: Reply with quote

stevem wrote:
It's the function the_date() in b2-include/b2template.functions.php

In particular the lines
Code:
$the_date = '';
if ($day != $previousday) {
   $the_date .= $before;
   ... (code to get the date)
   $the_date .= $after;
   $previousday = $day;
}

means that the variable $the_date is blank unless the current day is not the same as the previous day ie a day has gone by.
$the_date is then either returned or printed.
Thanks, I got it.
_________________

++ GamerZ.Per.Sg - Complex Simplicity
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    boardom Forum Index -> PHP help All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB 2 © 2001, 2002 phpBB Group