mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 15:22:17 +02:00
Datamodel viewer: Fix an issue where OQL Filters were truncated
This commit is contained in:
@@ -889,7 +889,7 @@ function DisplayClassDetails($oPage, $sClass, $sContext)
|
|||||||
}
|
}
|
||||||
elseif (is_object($oAllowedValuesDef = $oAttDef->GetValuesDef()))
|
elseif (is_object($oAllowedValuesDef = $oAttDef->GetValuesDef()))
|
||||||
{
|
{
|
||||||
$sAllowedValues = trim( $oAllowedValuesDef->GetValuesDescription(), "Filter : ");
|
$sAllowedValues = str_replace("Filter: ", "", $oAllowedValuesDef->GetValuesDescription());
|
||||||
$sAllowedValuesEscpd = json_encode($sAllowedValues);
|
$sAllowedValuesEscpd = json_encode($sAllowedValues);
|
||||||
|
|
||||||
$sFilterURL = urlencode($sAllowedValues);
|
$sFilterURL = urlencode($sAllowedValues);
|
||||||
|
|||||||
Reference in New Issue
Block a user