Bug #57145 » 57145.diff
"b/C:\\htdocs\\edelmetall\\typo3\\sysext\\extbase\\Classes\\Error\\Result.php" | ||
---|---|---|
return $this->recurseThroughResult(explode('.', $propertyPath));
|
||
}
|
||
if (!isset($this->propertyResults[$propertyPath])) {
|
||
$this->propertyResults[$propertyPath] = new Result();
|
||
$this->propertyResults[$propertyPath]->setParent($this);
|
||
$this->propertyResults[(string)$propertyPath] = new Result();
|
||
$this->propertyResults[(string)$propertyPath]->setParent($this);
|
||
}
|
||
return $this->propertyResults[$propertyPath];
|
||
return $this->propertyResults[(string)$propertyPath];
|
||
}
|
||
/**
|
- « Previous
- 1
- 2
- Next »