diff options
| author | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-06-28 15:03:22 +0000 |
|---|---|---|
| committer | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-06-28 15:03:22 +0000 |
| commit | 6164f2ad424c3e594254cb9328dde89972b865d0 (patch) | |
| tree | 12c40fea0151e7578bc21f85016bc5e54394c7de /frontends/php/include/page_header.php | |
| parent | a9ac3677ee5b18f69744bc6af176f4a1cea204bd (diff) | |
- fixed location of the manual and added link to support (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@4382 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/page_header.php')
| -rw-r--r-- | frontends/php/include/page_header.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/frontends/php/include/page_header.php b/frontends/php/include/page_header.php index f4be9c70..3881d46c 100644 --- a/frontends/php/include/page_header.php +++ b/frontends/php/include/page_header.php @@ -373,10 +373,12 @@ COpt::profiling_start("page"); { COpt::compare_files_with_menu($ZBX_MENU); - $help = new CLink(S_HELP, "http://www.zabbix.com/manual/v1.1/index.php", "small_font"); + $help = new CLink(S_HELP, "http://www.zabbix.com/manual/v1.4", "small_font"); $help->SetTarget('_blank'); + $support = new CLink(S_GET_SUPPORT, "http://www.zabbix.com/support.php", "small_font"); + $support->SetTarget('_blank'); - $page_header_r_col = array($help); + $page_header_r_col = array($help,array("|", $support)); if($USER_DETAILS["alias"] != ZBX_GUEST_USER){ $page_header_r_col[] = array("|", new CLink(S_PROFILE, "profile.php", "small_font"),"|", @@ -389,7 +391,7 @@ COpt::compare_files_with_menu($ZBX_MENU); $logo->SetTarget('_blank'); $top_page_row = array(new CCol($logo, "page_header_l"), new CCol($page_header_r_col, "page_header_r")); - unset($logo, $page_header_r_col, $help); + unset($logo, $page_header_r_col, $help, $support); $table = new CTable(NULL,"page_header"); $table->SetCellSpacing(0); |
