Change Owner in Security Tab in Assets is not always Working
This commit is contained in:
parent
f6d7496f14
commit
0b2b83c34f
2 changed files with 2 additions and 1 deletions
|
|
@ -3,6 +3,7 @@
|
|||
- fix: can't see the send private message link
|
||||
- fix: delete and become user links are shown for user list after deleting user
|
||||
- fix: Inbox shows Next page link when is empty
|
||||
- fix: Change Owner in Security Tab in Assets is not always Working
|
||||
- All toolbar icons now have a class called "toolbarIcon" so they can be
|
||||
styled by external CSS.
|
||||
- Profile fields and categories and have confirmation boxes when deleting using the side menu
|
||||
|
|
|
|||
|
|
@ -609,7 +609,7 @@ sub www_formUsers {
|
|||
my ($userCount) = $session->db->quickArray("select count(*) from users");
|
||||
return $output unless ($session->form->process("doit") || $userCount<250 || $session->form->process("pn") > 1);
|
||||
$output .= '<ul>';
|
||||
my $p = doUserSearch($session,"formUsers",1);
|
||||
my $p = doUserSearch($session,"formUsers;formId=".$session->form->process("formId"),1);
|
||||
foreach my $data (@{$p->getPageData}) {
|
||||
$output .= '<li><a href="#" onclick="window.opener.document.getElementById(\''.$session->form->process("formId").'\').value=\''.$data->{userId}.'\';window.opener.document.getElementById(\''.$session->form->process("formId").'_display\').value=\''.$data->{username}.'\';window.close();">'.$data->{username}.'</a></li>';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue