diff options
Diffstat (limited to 'frontends/php/include/page_header.php')
| -rw-r--r-- | frontends/php/include/page_header.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/frontends/php/include/page_header.php b/frontends/php/include/page_header.php index 5f4e7b4b..a6345d65 100644 --- a/frontends/php/include/page_header.php +++ b/frontends/php/include/page_header.php @@ -198,7 +198,7 @@ COpt::profiling_start("page"); ), "admin"=>array( "label" => S_ADMINISTRATION, - "default_page_id" => 0, + "default_page_id" => 1, "pages"=>array( ZBX_DISTRIBUTED ? array("url"=>"nodes.php" ,"label"=>S_NODES) : null , array("url"=>"users.php" ,"label"=>S_USERS , @@ -407,4 +407,15 @@ COpt::compare_files_with_menu($ZBX_MENU); { access_deny(); } + + if(version_compare(phpversion(), '5.1.0RC1', '>=') && $page['type'] != PAGE_TYPE_IMAGE) + { + $tmezone = ini_get('date.timezone'); + if(empty($tmezone)) + { + info('Timezone for PHP is not set. Please set "date.timezone" option in php.ini.'); + date_default_timezone_set('UTC'); + } + unset($tmezone); + } ?> |
