Join Date [SUGGESTION]

Is somebody flaming or causing problems? Is there a post that is too large for content? Moderators will check here often to discover problems quickly.
User avatar
Veegie




Socialist Architect Coroner Golden Age
Mad Hatter Acolyte Translator New Age
ONI

Posts: 3638
Joined: Wed Nov 26, 2003 2:28 pm
Location: Redmond, WA

Join Date [SUGGESTION]

Post 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.
Image
Hijikata wrote:The fact you love Jesus doesn't change the fact you're a *** mental patient. It just means you're a mental patient with a great imaginary friend.
User avatar
shadowkhas




Snitch! Socialist

Posts: 5423
Joined: Wed Jun 23, 2004 8:00 am
Location: Salt Lake City, Utah

Re: Join Date [SUGGESTION]

Post 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.
(7:15:27 PM) Xenon7: I BRUK THE FIRST PAGE OMGOMGOMG RONALD REGAN
mtxboxfreak




Socialist

Posts: 239
Joined: Sun Oct 05, 2003 12:23 am
Location: UK

Re: Join Date [SUGGESTION]

Post by mtxboxfreak »

I would also like this back.
User avatar
RaVNzCRoFT




Grunge Pyre

Posts: 6208
Joined: Mon Jan 10, 2005 3:05 pm
Location: Raleigh, North Carolina, USA

Re: Join Date [SUGGESTION]

Post 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.
User avatar
iBotPeaches





Posts: 78
Joined: Tue Aug 08, 2006 9:22 am
Location: Corral
Contact:

Re: Join Date [SUGGESTION]

Post 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.
Image
User avatar
FleetAdmiralBacon




Critic Pyre Articulatist 500

Posts: 2377
Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:

Re: Join Date [SUGGESTION]

Post 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']),
Image
Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
mtxboxfreak




Socialist

Posts: 239
Joined: Sun Oct 05, 2003 12:23 am
Location: UK

Re: Join Date [SUGGESTION]

Post 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.
Last edited by mtxboxfreak on Sun Jan 25, 2009 4:04 pm, edited 1 time in total.
SourceGuy
Readers Club




Magic Era Golden Age Tsunami Scorched Earth

Posts: 285
Joined: Sat Sep 20, 2003 7:08 am
Location: The Netherlands, Europe
Contact:

Re: Join Date [SUGGESTION]

Post 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.
User avatar
Veegie




Socialist Architect Coroner Golden Age
Mad Hatter Acolyte Translator New Age
ONI

Posts: 3638
Joined: Wed Nov 26, 2003 2:28 pm
Location: Redmond, WA

Re: Join Date [SUGGESTION]

Post by Veegie »

Yes.
I am cool now.
Image
Hijikata wrote:The fact you love Jesus doesn't change the fact you're a *** mental patient. It just means you're a mental patient with a great imaginary friend.
User avatar
DrXThirst




Connoisseur Foundry Pyre

Posts: 3011
Joined: Fri Jun 29, 2007 6:28 am
Location: Georgia
Contact:

Re: Join Date [SUGGESTION]

Post by DrXThirst »

I like it. This mess is actually cleaning out to become very nice indeed. :)
Image
User avatar
FleetAdmiralBacon




Critic Pyre Articulatist 500

Posts: 2377
Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:

Re: Join Date [SUGGESTION]

Post 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?
Image
Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
User avatar
RaVNzCRoFT




Grunge Pyre

Posts: 6208
Joined: Mon Jan 10, 2005 3:05 pm
Location: Raleigh, North Carolina, USA

Re: Join Date [SUGGESTION]

Post 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.
User avatar
FleetAdmiralBacon




Critic Pyre Articulatist 500

Posts: 2377
Joined: Sat Nov 26, 2005 7:01 pm
Location: Ohio
Contact:

Re: Join Date [SUGGESTION]

Post by FleetAdmiralBacon »

How about M 'Y? (Jan '09)
Image
Everything you'll ever need to know about me.
Need help with Linux, C#, C, Python, Java, PHP, Javascript, CSS, or VB? I'm available from 3:00PM-8:00PM EST on weekdays.
User avatar
WaeV




Advisor

Posts: 1045
Joined: Tue Jun 01, 2004 10:45 am
Location: New England

Re: Join Date [SUGGESTION]

Post by WaeV »

I'm fine with or without the month.
Image
User avatar
Cuda




Grunge

Posts: 5725
Joined: Tue Oct 18, 2005 2:59 pm
Location: Torrance, CA

Re: Join Date [SUGGESTION]

Post by Cuda »

WaeV wrote:I'm fine with or without the month.
so just 1, 2004 would be good for you?
Image
User avatar
Tural




Conceptionist Acolyte Bloodhound Recreator
Socialist Connoisseur Droplet Scorched Earth
Grunge

Posts: 15628
Joined: Thu Jun 16, 2005 3:44 pm
Location: Lincoln, NE
Contact:

Re: Join Date [SUGGESTION]

Post by Tural »

I think he means just the year.
User avatar
Cuda




Grunge

Posts: 5725
Joined: Tue Oct 18, 2005 2:59 pm
Location: Torrance, CA

Re: Join Date [SUGGESTION]

Post by Cuda »

how about numerically? just M/D/Y?
Image
User avatar
Win




Socialist

Posts: 80
Joined: Thu Dec 25, 2008 2:50 pm

Re: Join Date [SUGGESTION]

Post by Win »

This is good. Thanks.
* Veegie high fives GTAF _o/\o_
* Veegie high fives shadowkhas _o/\o_
* Veegie leaves warlord hangin' _o/ /o_
User avatar
Geo
Forum Manager




Illusionist Stylist Advisor Pi
Connoisseur Pyre Socialist Tsunami

Posts: 4404
Joined: Sun Jun 19, 2005 1:01 am
Location: United Kingdom
Contact:

Re: Join Date [SUGGESTION]

Post by Geo »

I think it's fine as it is now, unless anyone has some serious issues with it?
Image
For extremely cheap web hosting and domains, PM me. Includes excellent control panel software and instant activation!
User avatar
shadowkhas




Snitch! Socialist

Posts: 5423
Joined: Wed Jun 23, 2004 8:00 am
Location: Salt Lake City, Utah

Re: Join Date [SUGGESTION]

Post by shadowkhas »

It's good.
(7:15:27 PM) Xenon7: I BRUK THE FIRST PAGE OMGOMGOMG RONALD REGAN
Post Reply