MyBB Community Forums

Full Version: [F] [Bug] - Admin CP -> Users & Groups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When you edit the timezone of a user through the Admin CP it won't have any effect.

Note: I've uploaded that modules/user/user.php from Chris of the thread with the search bug.
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.
So how can we fix it? Smile
In admin/modules/user/users.php find:
"timezone" => $mybb->input['timezoneoffset'],
replace with:
"timezone" => $mybb->input['timezone'],

also find:
"<label for=\"timezone\">{$lang->time_zone}:</label><br />".build_timezone_select("timezone", $mybb->user['timezone']),
replace with:
"<label for=\"timezone\">{$lang->time_zone}:</label><br />".build_timezone_select("timezone", $mybb->input['timezone']),
Thanks, its nice to keep uptodate.
very nice and very thanks for report this bug and thanks Zinga for fix this problem
have a good end week