Page 1 of 2

Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 10:26 am
by Veegie
I would like it to show the join date near a user's avatar again.
There is un-used space there as it is.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 10:31 am
by shadowkhas
I agree. Just the day/month/year would fit well. We don't need the hour/minute, as there was at the first setup of this forum.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 11:03 am
by mtxboxfreak
I would also like this back.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 12:39 pm
by RaVNzCRoFT
shadowkhas wrote:I agree. Just the day/month/year would fit well. We don't need the hour/minute, as there was at the first setup of this forum.
It displayed users' join dates in the same manner each user chooses to display all dates and times. I set a custom display for myself, "M j, Y - g:i A," which shows up as "Jan 25, 2009 - 1:26 PM." All users' join dates were displayed in that manner for me. So if you set your profile to show not just the date of a post but the time of the post, which I'm sure all users have done, join dates will display times as well.

If there were some way to override this feature in displaying join dates, that would be great. I'm pretty sure SourceGuy said in the IRC yesterday that he couldn't find one, though.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 2:09 pm
by iBotPeaches
You could easily do a mass SQL query to default everyone's dates to the your pick. Then put it back, and hope people don't change it, but I don't know any table names or whatnot. So I cannot help.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 2:14 pm
by FleetAdmiralBacon
Just add our own bit of code there and a do a direct call to date([format],[time]).

Line 1066 in current SVN, file 'viewtopic.php'. This is in the block of code that gathers the user data for the thread.
Before:

Code: Select all

'joined'		=> $user->format_date($row['user_regdate']),
This uses the current user preferences to format the date. Screw that.

Code: Select all

'joined'		=> date("some_other_date_format",$row['user_regdate']),
Ie, month/day/year:

Code: Select all

'joined'		=> date("n/j/Y",$row['user_regdate']),

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 2:40 pm
by mtxboxfreak
Nice work.

I think the original format for the join date was eg. Oct 5, 2003 (or it was at least similar to this, someone can probably come up with a screenshot from the old forum).

So a date format of "M j, Y" should do the trick.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 3:08 pm
by SourceGuy
FleetAdmiralBacon wrote:Just add our own bit of code there and a do a direct call to date([format],[time]).

Line 1066 in current SVN, file 'viewtopic.php'. This is in the block of code that gathers the user data for the thread.
Before:

Code: Select all

'joined'		=> $user->format_date($row['user_regdate']),
This uses the current user preferences to format the date. Screw that.

Code: Select all

'joined'		=> date("some_other_date_format",$row['user_regdate']),
Ie, month/day/year:

Code: Select all

'joined'		=> date("n/j/Y",$row['user_regdate']),
Thanks for the help.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 3:26 pm
by Veegie
Yes.
I am cool now.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 3:36 pm
by DrXThirst
I like it. This mess is actually cleaning out to become very nice indeed. :)

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 3:50 pm
by FleetAdmiralBacon
SourceGuy wrote:Thanks for the help.
Don't mention it, always here to help.
e: Why does that phrase seem so... odd on the Internet?

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 4:16 pm
by RaVNzCRoFT
Hmm...it seems like some join dates run two lines now...that's kind of annoying.

I think month and year (ie. Apr 2005) is sufficient, don't you? Or widening that left column by just 3 or 4 pixels seems like it would fix it, too.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 4:18 pm
by FleetAdmiralBacon
How about M 'Y? (Jan '09)

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 4:41 pm
by WaeV
I'm fine with or without the month.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 11:15 pm
by Cuda
WaeV wrote:I'm fine with or without the month.
so just 1, 2004 would be good for you?

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 11:21 pm
by Tural
I think he means just the year.

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 11:25 pm
by Cuda
how about numerically? just M/D/Y?

Re: Join Date [SUGGESTION]

Posted: Sun Jan 25, 2009 11:39 pm
by Win
This is good. Thanks.

Re: Join Date [SUGGESTION]

Posted: Mon Jan 26, 2009 4:10 am
by Geo
I think it's fine as it is now, unless anyone has some serious issues with it?

Re: Join Date [SUGGESTION]

Posted: Mon Jan 26, 2009 5:49 am
by shadowkhas
It's good.