NIHVIVO-2476 Rather than rewrite editDatapropStmtRequestDispatch.jsp to filter on statements, use an unfiltered DAO for the particular operation.
This commit is contained in:
parent
a949d99bb5
commit
cdd0d2f733
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@
|
|||
}
|
||||
vreq.setAttribute("subject", subject);
|
||||
|
||||
DataProperty dataproperty = wdf.getDataPropertyDao().getDataPropertyByURI( predicateUri );
|
||||
WebappDaoFactory unfilteredWdf = vreq.getAssertionsWebappDaoFactory();
|
||||
DataProperty dataproperty = unfilteredWdf.getDataPropertyDao().getDataPropertyByURI( predicateUri );
|
||||
if( dataproperty == null) {
|
||||
// No dataproperty will be returned for rdfs:label, but we shouldn't throw an error.
|
||||
// This is controlled by the Jena layer, so we can't change the behavior.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue