From c6b7abe59badee7d2fe3608e95a340f6b366c0ff Mon Sep 17 00:00:00 2001 From: artem Date: Fri, 27 Jun 2008 11:37:58 +0000 Subject: - [DEV-177] fix checkbox range selection (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5804 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/page_header.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontends/php/include') diff --git a/frontends/php/include/page_header.php b/frontends/php/include/page_header.php index 57372097..6d0591f1 100644 --- a/frontends/php/include/page_header.php +++ b/frontends/php/include/page_header.php @@ -500,7 +500,7 @@ COpt::compare_files_with_menu($ZBX_MENU); if($lst_nodes->ItemsCount() > 1){ $node_form = new CForm(); - $node_form->AddItem(array(S_CURRENT_NODE,$lst_nodes)); + $node_form->AddItem(array(new CSpan(S_CURRENT_NODE,'textcolorstyles'),$lst_nodes)); unset($lst_nodes); if(!defined('ZBX_DISABLE_SUBNODES')){ @@ -510,7 +510,7 @@ COpt::compare_files_with_menu($ZBX_MENU); $cmd_show_subnodes->AddItem(0, S_CURRENT_NODE_ONLY); $cmd_show_subnodes->AddItem(1, S_WITH_SUBNODES); - $node_form->AddItem(array(SPACE, S_SHOW, $cmd_show_subnodes)); + $node_form->AddItem(array(SPACE, new CSpan(S_SHOW,'textcolorstyles'), $cmd_show_subnodes)); } // No need for the button anymore -- cgit