diff options
Diffstat (limited to 'modules/rdf/rdf.module')
-rw-r--r-- | modules/rdf/rdf.module | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/rdf/rdf.module b/modules/rdf/rdf.module index 105a9680c..78dfb6e34 100644 --- a/modules/rdf/rdf.module +++ b/modules/rdf/rdf.module @@ -483,6 +483,12 @@ function rdf_preprocess_node(&$variables) { $comment_count_attributes['property'] = $variables['node']->rdf_mapping['comment_count']['predicates']; $comment_count_attributes['content'] = $variables['node']->comment_count; $comment_count_attributes['datatype'] = $variables['node']->rdf_mapping['comment_count']['datatype']; + // According to RDFa parsing rule number 4, a new subject URI is created + // from the href attribute if no rel/rev attribute is present. To get + // the original node URL from the about attribute of the parent container + // we set an empty rel attribute which triggers rule number 5. See + // http://www.w3.org/TR/rdfa-syntax/#sec_5.5. + $comment_count_attributes['rel'] = ''; $variables['content']['links']['comment']['#links']['comment_comments']['attributes'] += $comment_count_attributes; } // In full node view, the number of comments is not displayed by |