Skip to content

Commit

Permalink
fix keywords index bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyuexrow committed Nov 23, 2017
1 parent e954be8 commit 515a709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/ezfSolrDocumentFieldxrowMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function getData()
$data[self::getFieldName( $contentClassAttribute, 'title' )] = $this->ContentObjectAttribute->attribute( 'content' )->attribute( 'title' );
$data[self::getFieldName( $contentClassAttribute, 'description' )] = $this->ContentObjectAttribute->attribute( 'content' )->attribute( 'description' );
$data[self::getFieldName( $contentClassAttribute, 'sitemap_use' )] = $this->ContentObjectAttribute->attribute( 'content' )->attribute( 'sitemap_use' );
$data[self::getFieldName( $contentClassAttribute, self::DEFAULT_SUBATTRIBUTE )] = implode(",", $this->ContentObjectAttribute->attribute( 'content' )->attribute( 'keywords' ) );
$data[self::getFieldName( $contentClassAttribute, self::DEFAULT_SUBATTRIBUTE )] = $this->ContentObjectAttribute->attribute( 'content' )->attribute( 'keywords' );
}
return $data;
}
Expand Down

0 comments on commit 515a709

Please sign in to comment.