Fix typo in property name

This commit is contained in:
Sebastian Meyer 2012-08-29 14:32:58 +02:00
parent 8d2e567054
commit 9d6ce379ee
2 changed files with 6 additions and 6 deletions

View File

@ -108,9 +108,9 @@ class tx_dlf_indexing {
$errors = 0;
// Handle multi-volume documents.
if ($doc->parentid) {
if ($doc->parentId) {
$parent = tx_dlf_document::getInstance($doc->parentid, 0, TRUE);
$parent = tx_dlf_document::getInstance($doc->parentId, 0, TRUE);
if ($parent->ready) {
@ -120,7 +120,7 @@ class tx_dlf_indexing {
if (TYPO3_DLOG) {
t3lib_div::devLog('[tx_dlf_indexing->add(['.$doc->uid.'], '.$core.')] Could not load parent document with UID "'.$doc->parentid.'"', $this->extKey, SYSLOG_SEVERITY_ERROR);
t3lib_div::devLog('[tx_dlf_indexing->add(['.$doc->uid.'], '.$core.')] Could not load parent document with UID "'.$doc->parentId.'"', $this->extKey, SYSLOG_SEVERITY_ERROR);
}
@ -488,7 +488,7 @@ class tx_dlf_indexing {
}
$solrDoc->setField('partof', $doc->parentid);
$solrDoc->setField('partof', $doc->parentId);
$solrDoc->setField('sid', $logicalUnit['id']);

View File

@ -247,9 +247,9 @@ class tx_dlf_metadata extends tx_dlf_plugin {
if ($index_name == 'title') {
// Get title of parent document if needed.
if (empty($value) && $this->conf['getTitle'] && $this->doc->parentid) {
if (empty($value) && $this->conf['getTitle'] && $this->doc->parentId) {
$value = '['.tx_dlf_document::getTitle($this->doc->parentid, TRUE).']';
$value = '['.tx_dlf_document::getTitle($this->doc->parentId, TRUE).']';
}