Commit 7cced201afa0469495ee4c00f170f391914e44f7
1 parent
2c99863f
Exists in
master
and in
21 other branches
Done.
Showing
2 changed files
with
4 additions
and
2 deletions
Show diff stats
src/InputOutput/IHMImpl/Tools/IHMParamManagerClass.php
... | ... | @@ -115,9 +115,10 @@ class IHMParamManagerClass |
115 | 115 | $ytitle = !empty($parameter["name"]) ? $parameter["name"] : $parameter["id"]; |
116 | 116 | $flag = $parameter["id"]; |
117 | 117 | $description = $parameter["description"]; |
118 | + $statusParam = $parameter["status"]; | |
118 | 119 | $desc_parts = array(); |
119 | - $defs = explode("-",$description); | |
120 | - if (empty($description)) { | |
120 | + $defs = explode("-",$statusParam); | |
121 | + if (empty($statusParam)) { | |
121 | 122 | //No status defined => Read catalog as TT |
122 | 123 | $info["info"]["isCatalog"] = FALSE; |
123 | 124 | $flag = ""; | ... | ... |
src/InputOutput/IHMImpl/Tools/IHMTTCatLoaderClass.php
... | ... | @@ -112,6 +112,7 @@ class IHMTTCatLoaderClass |
112 | 112 | "type" => $parameterNode->getAttribute("type"), |
113 | 113 | "unit" => $parameterNode->getAttribute("unit"), |
114 | 114 | "description" => $parameterNode->getAttribute("description"), |
115 | + "status" => $parameterNode->getAttribute("status"), | |
115 | 116 | "ucd" => $parameterNode->getAttribute("ucd"), |
116 | 117 | "utype" => $parameterNode->getAttribute("utype"), |
117 | 118 | ); | ... | ... |