* add arrow to the select html.

This commit is contained in:
wangchunsheng
2010-11-18 15:25:54 +00:00
parent 7175fb9366
commit 3fb68bbb0c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ class testtaskModel extends model
$selectHtml = html::select('productID', $products, $productID, "onchange=\"switchProduct(this.value, 'testtask', 'browse');\"");
foreach($this->lang->testtask->menu as $key => $value)
{
$replace = ($key == 'product') ? $selectHtml : $productID;
$replace = ($key == 'product') ? $selectHtml . $this->lang->arrow: $productID;
common::setMenuVars($this->lang->testtask->menu, $key, $replace);
}
}