Fixed cosmetic issue in the error reporting on OQL normalization (using a tree operator on a NON hierarchical key)

SVN:trunk[1954]
This commit is contained in:
Romain Quetiez
2012-04-13 07:54:25 +00:00
parent 46e3eac149
commit b6ac94a8f1

View File

@@ -610,7 +610,7 @@ class DBObjectSearch
}
if(($iOperatorCode != TREE_OPERATOR_EQUALS) && !($oAttExtKey instanceof AttributeHierarchicalKey))
{
throw new CoreException("The specified tree operator $isOperatorCode is not applicable to the key '{$this->GetClass()}::$sExtKeyAttCode', which is not a HierarchicalKey");
throw new CoreException("The specified tree operator $iOperatorCode is not applicable to the key '{$this->GetClass()}::$sExtKeyAttCode', which is not a HierarchicalKey");
}
$bSamePointingTo = false;