summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-07-27 18:47:23 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-07-27 18:47:23 +0000
commitf85792e32fa57beb65f9155c65a4a732bda222c1 (patch)
tree30c4bb2adc98036fc684d009750428fe93178e35
parentce0276a3232c92ced91a15af7340193aaff013e8 (diff)
downloadzabbix-f85792e32fa57beb65f9155c65a4a732bda222c1.tar.gz
zabbix-f85792e32fa57beb65f9155c65a4a732bda222c1.tar.xz
zabbix-f85792e32fa57beb65f9155c65a4a732bda222c1.zip
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@1364 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r--frontends/php/about.php2
-rw-r--r--frontends/php/include/local_en.inc.php1
-rw-r--r--frontends/php/items.php5
-rw-r--r--frontends/php/services.php3
4 files changed, 7 insertions, 4 deletions
diff --git a/frontends/php/about.php b/frontends/php/about.php
index 517de74b..739250d4 100644
--- a/frontends/php/about.php
+++ b/frontends/php/about.php
@@ -40,7 +40,7 @@
</TR>
<TR BGCOLOR=#DDDDDD>
<TD ALIGN=LEFT>
- <font face="Helvetica"><a href="http://www.zabbix.com/#manual"><?php echo S_LATEST_ZABBIX_MANUAL; ?></a></font><br>
+ <font face="Helvetica"><a href="http://www.zabbix.com/manual.php>"<?php echo S_LATEST_ZABBIX_MANUAL; ?></a></font><br>
</TD>
<TD>
<?php echo S_LATEST_ZABBIX_MANUAL_DETAILS; ?>
diff --git a/frontends/php/include/local_en.inc.php b/frontends/php/include/local_en.inc.php
index 763c19c2..90800db9 100644
--- a/frontends/php/include/local_en.inc.php
+++ b/frontends/php/include/local_en.inc.php
@@ -405,6 +405,7 @@
define("S_LINK_DELETED", "Link deleted");
define("S_CANNOT_DELETE_LINK", "Cannot delete link");
define("S_STATUS_CALCULATION", "Status calculation");
+ define("S_STATUS_CALCULATION_ALGORITHM", "Status calculation algorithm");
define("S_NONE", "None");
define("S_MAX_OF_CHILDS", "MAX of childs");
define("S_MIN_OF_CHILDS", "MIN of childs");
diff --git a/frontends/php/items.php b/frontends/php/items.php
index c8abe129..d1f74fd1 100644
--- a/frontends/php/items.php
+++ b/frontends/php/items.php
@@ -19,11 +19,12 @@
**/
?>
<?php
+ include "include/config.inc.php";
+ include "include/forms.inc.php";
+
$page["title"] = S_CONFIGURATION_OF_ITEMS;
$page["file"] = "items.php";
- include "include/config.inc.php";
- include "include/forms.inc.php";
show_header($page["title"],0,0);
insert_confirm_javascript();
?>
diff --git a/frontends/php/services.php b/frontends/php/services.php
index 57167c5a..6f286d2f 100644
--- a/frontends/php/services.php
+++ b/frontends/php/services.php
@@ -19,10 +19,11 @@
**/
?>
<?php
+ include "include/config.inc.php";
+
$page["title"] = S_IT_SERVICES;
$page["file"] = "services.php";
- include "include/config.inc.php";
show_header($page["title"],0,0);
insert_confirm_javascript();
?>