branch develop updated (20110c7 -> c584b14)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git from 20110c7 Add missing for atlantos export new c584b14 #8669 Fix conversion for the pagination The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit c584b147b78ed4ebc2c2df2e959ad1fdb036ce68 Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Thu Oct 20 17:59:13 2016 +0200 #8669 Fix conversion for the pagination Summary of changes: .../src/main/java/fr/ifremer/echobase/services/service/UserService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit c584b147b78ed4ebc2c2df2e959ad1fdb036ce68 Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Thu Oct 20 17:59:13 2016 +0200 #8669 Fix conversion for the pagination --- .../src/main/java/fr/ifremer/echobase/services/service/UserService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echobase-services/src/main/java/fr/ifremer/echobase/services/service/UserService.java b/echobase-services/src/main/java/fr/ifremer/echobase/services/service/UserService.java index 216a106..b1f72e9 100644 --- a/echobase-services/src/main/java/fr/ifremer/echobase/services/service/UserService.java +++ b/echobase-services/src/main/java/fr/ifremer/echobase/services/service/UserService.java @@ -61,7 +61,7 @@ public class UserService extends EchoBaseServiceSupport { */ @Deprecated public List<EchoBaseUser> getUsers(PagerBean pager) { - PaginationParameter param = PaginationParameter.of(pager.getPageIndex(), pager.getPageSize()); + PaginationParameter param = PaginationParameter.of(pager.getPageIndex() - 1, pager.getPageSize(), EchoBaseUser.PROPERTY_EMAIL, true); return getUsers(param); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm