Skip to content

Commit

Permalink
Merge pull request #45 from eea/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
valipod authored Jan 13, 2022
2 parents c0aa127 + 504bff2 commit 2d26789
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

3.8 - (2022-01-13)
---------------------------
* [bugfix] fix PCP set/unset
[valipod refs #143780]

3.7 - (2021-12-17)
---------------------------
* [bugfix] fix initialisation of datatables
Expand Down
2 changes: 1 addition & 1 deletion eea/ldapadmin/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7
3.8
2 changes: 1 addition & 1 deletion eea/ldapadmin/www/role_leaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $(function () {
$('div#role_listing').on('click', 'div.nrc_role input[class=leader]', function(){
var checkb = $(this);
var role_table = checkb.parents("table");
var role_id = role_table.prev('h3').attr("id");
var role_id = role_table.closest('.form-inline').prev().attr("id");
var user_id = checkb.val();
$.post("set_pcp", {"role_id": role_id, "user_id": user_id},
function (data){
Expand Down

0 comments on commit 2d26789

Please sign in to comment.