timeedit.php is only selecting punchitems up unitl 2pm on the day i select.
Add & Delete work fine, its just Edit that doesn't work
I'm using 24 hour time format, GMT +10 timezone and euro calendar.
Logged In: YES user_id=1239348 Originator: YES
in edittime.php on or around line 633
$timestamp = strtotime($post_date) - @$tzo; $calc = $timestamp + 86400 - @$tzo;
You're subtracting the timezone twice.
Same problem on or around line 388
Changing these lines fixed it for me.
Log in to post a comment.
Logged In: YES
user_id=1239348
Originator: YES
in edittime.php on or around line 633
$timestamp = strtotime($post_date) - @$tzo;
$calc = $timestamp + 86400 - @$tzo;
You're subtracting the timezone twice.
Logged In: YES
user_id=1239348
Originator: YES
Same problem on or around line 388
Changing these lines fixed it for me.