i don't reccommend changing the core code to the software, it is not a safe and secure way to modify it, it is best to simply add to the code,
in your case i would recommend just removing the call for it in the style files jsut be sure to edit them in like notepad++ or a program similiar, and NOT edit the style files in the ACP





by: nicholassolutionsPosted on 2009-03-03 at 23:14:48ID: 23792283
There are a few ways to do this, but the best is probably to do the following: hp
open phpBB/includes/functions.p
On line 3700 you will see
'S_TIMEZONE' => ($user->data['us........a lot more code...,
right after the =>, put
'', //
(those are two single quotes) so that you have:
'S_TIMEZONE' =>'', // ($user->data['us........a lot more code...,
What you are doing is assigning S_TIMEZONE to a blank string, and commenting out the existing code that generates the string you don't want.
Hope that helps,
Matt