Skip to content
Snippets Groups Projects
Commit 30471cd8 authored by Alvaro Graves's avatar Alvaro Graves
Browse files

Fixing display of blank nodes

parent 1dbfcaef
No related branches found
No related tags found
No related merge requests found
...@@ -69,6 +69,8 @@ class Utils{ ...@@ -69,6 +69,8 @@ class Utils{
if($v['type'] == 'uri'){ if($v['type'] == 'uri'){
$row['curie'][$k] = Utils::uri2curie($v['value']); $row['curie'][$k] = Utils::uri2curie($v['value']);
$row['uri'][$k] = 1; $row['uri'][$k] = 1;
}elseif($v['type'] == 'bnode'){
$row['curie'][$k] = 'blankNode';
} }
} }
if(sizeof($row) >0){ if(sizeof($row) >0){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment