Author: tmortagne
Date: 2007-12-06 14:58:24 +0100 (Thu, 06 Dec 2007)
New Revision: 6313
Modified:
xwiki-platform/core/branches/xwiki-core-1.2/xwiki-core/src/main/java/com/xpn/xwiki/api/XWiki.java
Log:
XWIKI-1930: XWiki.searchDocuments(String, boolean, int, int) does not use
"distinctbylanguage" parameter
Modified:
xwiki-platform/core/branches/xwiki-core-1.2/xwiki-core/src/main/java/com/xpn/xwiki/api/XWiki.java
===================================================================
---
xwiki-platform/core/branches/xwiki-core-1.2/xwiki-core/src/main/java/com/xpn/xwiki/api/XWiki.java
2007-12-06 13:37:46 UTC (rev 6312)
+++
xwiki-platform/core/branches/xwiki-core-1.2/xwiki-core/src/main/java/com/xpn/xwiki/api/XWiki.java
2007-12-06 13:58:24 UTC (rev 6313)
@@ -451,7 +451,7 @@
public List searchDocuments(String wheresql, boolean distinctbylanguage)
throws XWikiException
{
- return wrapDocs(xwiki.getStore().searchDocuments(wheresql,
getXWikiContext()));
+ return wrapDocs(xwiki.getStore().searchDocuments(wheresql,
distinctbylanguage, getXWikiContext()));
}
/**
@@ -467,7 +467,7 @@
public List searchDocuments(String wheresql, boolean distinctbylanguage,
int nb, int start)
throws XWikiException
{
- return wrapDocs(xwiki.getStore().searchDocuments(wheresql, nb, start,
getXWikiContext()));
+ return wrapDocs(xwiki.getStore().searchDocuments(wheresql,
distinctbylanguage, nb, start, getXWikiContext()));
}
/**
_______________________________________________
notifications mailing list
[email protected]
http://lists.xwiki.org/mailman/listinfo/notifications