summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/page_header.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-29 13:57:25 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-29 13:57:25 +0000
commita601b443e31a4b13d3d19279e1d20215936d55d7 (patch)
tree689e6782926c3fd45b339d6b0bda7109c6278e00 /frontends/php/include/page_header.php
parentb0cb81d651f0bba1b2a75eddea37a7c0bcaa8946 (diff)
downloadzabbix-a601b443e31a4b13d3d19279e1d20215936d55d7.tar.gz
zabbix-a601b443e31a4b13d3d19279e1d20215936d55d7.tar.xz
zabbix-a601b443e31a4b13d3d19279e1d20215936d55d7.zip
- some adjusts to pass XHTML validation (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4401 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/page_header.php')
-rw-r--r--frontends/php/include/page_header.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/php/include/page_header.php b/frontends/php/include/page_header.php
index 3175efac..1bee7728 100644
--- a/frontends/php/include/page_header.php
+++ b/frontends/php/include/page_header.php
@@ -343,11 +343,11 @@ COpt::profiling_start("page");
<title><?php echo $page['title'] ?></title>
<?php
if(defined('ZBX_PAGE_DO_REFRESH') && $USER_DETAILS["refresh"]) {
- echo '<meta http-equiv="refresh" content="'.$USER_DETAILS["refresh"].'">';
+ echo '<meta http-equiv="refresh" content="'.$USER_DETAILS["refresh"].'" />';
}
?>
- <link rel="stylesheet" href="css.css">
- <meta name="Author" content="ZABBIX SIA">
+ <link rel="stylesheet" href="css.css" />
+ <meta name="Author" content="ZABBIX SIA" />
<script type="text/javascript" src="js/common.js"></script>
<?php
if(isset($page['scripts']) && is_array($page['scripts'])){
@@ -363,7 +363,7 @@ COpt::profiling_start("page");
}
?>
</head>
-<body onLoad="zbxCallPostScripts();">
+<body onload="zbxCallPostScripts();">
<?php
}