hellkvist.org Forum Index hellkvist.org
Discussions about the free software on hellkvist.org
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Date-Formatting

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    hellkvist.org Forum Index -> MMS Diary
View previous topic :: View next topic  
Author Message
Bernhard Goodwin
Guest





PostPosted: Mon Mar 28, 2005 9:02 pm    Post subject: Date-Formatting Reply with quote

MMSDiary is great!

To customize the date-String in a MMS-Post I would add in config.php:
Code:
define( "DATE_FORMAT",    "Y-m-d H:i:s" );


change diarylib.php / function printEntry

Code:
$date = $message[0]
$Y = substr( $date, 8, 2 );
$m = substr( $date, 5, 2 );
$d = substr( $date, 0, 4 );
$H = substr( $date, 11, 2 );
$i = substr( $date, 14, 2 );
$s = substr( $date, 17, 2 );
$date = date(DATE_FORMAT, mktime($H,$i,$s,$m,$d,$Y) );


Now insert $date instead of $message[0]

Best wishes

Bernie
--
http://www.BeGood.de
Back to top
Bernhard Goodwin
Guest





PostPosted: Mon Mar 28, 2005 9:07 pm    Post subject: DATE_FORMAT Reply with quote

Hi!

The String works with the functionality of php/date():

http://www.php.net/manual/en/function.date.php

Bernie
--
http://www.BeGood.de
Back to top
Peffis
Site Admin


Joined: 09 Sep 2003
Posts: 324
Location: Sweden

PostPosted: Tue Mar 29, 2005 3:16 pm    Post subject: Reply with quote

Thanks for the feedback and sharing!
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    hellkvist.org Forum Index -> MMS Diary All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot 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 © 2001, 2005 phpBB Group