
03-11-2010, 12:12 AM
|
 |
|
|
Join Date: Aug 2004
Location: Greenville, SC
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Farcaster
Very sorry for the delay folks. I've been crazy busy with some freelance stuff that I have had to devote a lot of time to. Please bare with me. If your familiar with PHP and want to try something though and see if it fixes the problem for the date/time issues in other languages, go into the plugin "GETDAY_EVENT: Add RSVPs and Form to Event" and find all instances of vbdate. It will look something like: "vbdate($vbulletin->options['dateformat'], $userdate, false, false, true);" Change the fourth option after vbdate to true. If you try that, let me know if it helps. Be sure to find all of the instances of vbdate -- I believe there are six of them.
|
My install already says
PHP Code:
$rsvp_day_formatted = vbdate($vbulletin->options['dateformat'], $userdate, false, false, true);
$rsvp_day_formatted_xtra = vbdate("Y-m-d h:i A", $userdate, false, false, true);
$rsvp_day = vbdate('Y-m-d', $userdate, false, true, true);
$rsvp['rsvp_date_user'] = vbdate($vbulletin->options['dateformat']." ".$vbulletin->options['timeformat'],$rsvp['rsvp_date'],false,false,true);
|