summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes/ctree.inc.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/classes/ctree.inc.php
parentb0cb81d651f0bba1b2a75eddea37a7c0bcaa8946 (diff)
- 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/classes/ctree.inc.php')
-rw-r--r--frontends/php/include/classes/ctree.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/classes/ctree.inc.php b/frontends/php/include/classes/ctree.inc.php
index 7ab2f89f..c224c2fc 100644
--- a/frontends/php/include/classes/ctree.inc.php
+++ b/frontends/php/include/classes/ctree.inc.php
@@ -135,7 +135,7 @@ function MakeSImgStr($id){
case 'L':
if($this->tree[$id]['nodetype'] == 2){
$img= new CImg('images/general/tree/Yc.gif','y','22','18');
- $img->AddOption('OnClick','javascript: tree.closeSNodeX('.$id.',this);');
+ $img->AddOption('onclick','javascript: tree.closeSNodeX('.$id.',this);');
$img->AddOption('id',$id.'I');
$img->SetClass('imgnode');
@@ -146,7 +146,7 @@ function MakeSImgStr($id){
case 'T':
if($this->tree[$id]['nodetype'] == 2){
$img= new CImg('images/general/tree/Xc.gif','x','22','18');
- $img->AddOption('OnClick','javascript: tree.closeSNodeX('.$id.',this);');
+ $img->AddOption('onclick','javascript: tree.closeSNodeX('.$id.',this);');
$img->AddOption('id',$id.'I');
$img->SetClass('imgnode');
} else {