-
Type:
Incident report
-
Resolution: Fixed
-
Priority:
Minor
-
Affects Version/s: 2.4.4
-
Component/s: Server (S)
Suppose we have the following item prototype:
echo[{#VALUE}]
If the value of {#VALUE} macro is "quoted" (quotes are part of the value), then in the discovered item key the expanded macro is quoted correctly:
echo["\"quoted\""]
However, suppose we have a calculated item prototype with the following expression:
strlen(echo[{#VALUE}])
In this case, expression of the discovered calculated item will be the following, which is not correct:
strlen(echo["quoted"])