Skip to content

Commit

Permalink
Apply 91c5270 properly/fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX committed Mar 22, 2012
2 parents 8b74481 + 2727506 commit c774634
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions store/ARC2_StoreConstructQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ function getResultIndex($qr) {
}
$t[$term] = $val;
$t[$term . '_type'] = $type;
if (isset($row[$term . ' lang'])) {
$t[$term . '_lang'] = $row[$term . ' lang'];
if (isset($row[$ct[$term] . ' lang'])) {
$t[$term . '_lang'] = $row[$ct[$term] . ' lang'];
}
if (isset($row[$term . ' datatype'])) {
$t[$term . '_datatype'] = $row[$term . ' datatype'];
if (isset($row[$ct[$term] . ' datatype'])) {
$t[$term . '_datatype'] = $row[$ct[$term] . ' datatype'];
}
}
if (!$skip_t) {
Expand Down
2 changes: 1 addition & 1 deletion store/ARC2_StoreEndpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ function getHTMLDocBody() {
<p>
<a href="?">This interface</a> implements
<a href="http://www.w3.org/TR/rdf-sparql-query/">SPARQL</a> and
<a href="http://arc.semsol.org/docs/v2/sparql+">SPARQL+</a> via <a href="http://www.w3.org/TR/rdf-sparql-protocol/#query-bindings-http">HTTP Bindings</a>.
<a href="https://github.com/semsol/arc2/wiki/SPARQL%2B">SPARQL+</a> via <a href="http://www.w3.org/TR/rdf-sparql-protocol/#query-bindings-http">HTTP Bindings</a>.
</p>
<p>
Enabled operations: ' . join(', ', $this->getFeatures()) . '
Expand Down

0 comments on commit c774634

Please sign in to comment.