mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
. Added link to the associated Working Copy for a locked document to the Document Details page
. Improved performance of "locked" status check for a cached client Node object . Adding missing method to the list of authenticated methods for the CheckoutCheckinService to public-services-security-context.xml git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2509 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -662,7 +662,7 @@ public class BrowseBean implements IContextListener
|
||||
|
||||
results = this.searchService.query(
|
||||
Repository.getStoreRef(),
|
||||
"lucene", query, null, null);
|
||||
SearchService.LANGUAGE_LUCENE, query, null, null);
|
||||
if (logger.isDebugEnabled())
|
||||
logger.debug("Search results returned: " + results.length());
|
||||
|
||||
@@ -777,7 +777,7 @@ public class BrowseBean implements IContextListener
|
||||
|
||||
public NodePropertyResolver resolverlocked = new NodePropertyResolver() {
|
||||
public Object get(Node node) {
|
||||
return Repository.isNodeLocked(node, lockService);
|
||||
return node.isLocked();
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user