-
-
Notifications
You must be signed in to change notification settings - Fork 758
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module permissions lost when using "Place existing Module" #5633
Open
1 of 3 tasks
Labels
Milestone
Comments
First search, looks like this
is missing in clone module:
|
schotman
added a commit
to schotman/Dnn.Platform
that referenced
this issue
Mar 20, 2025
When a user with edit rights (aka admin, NOT host) copies an existing module that has "inherit permissions" unchecked, no permissions are saved for the new module. For the admin user the module "vanishes" from the page (seems to be not added). However the host user still sees the module. fix issue dnnsoftware#5633
schotman
added a commit
to schotman/Dnn.Platform
that referenced
this issue
Mar 20, 2025
When a user with edit rights (aka admin, NOT host) copies an existing module that has "inherit permissions" unchecked, no permissions are saved for the new module. For the admin user the module "vanishes" from the page (seems to be not added). However the host user still sees the module. line 957 fix issue dnnsoftware#5633
schotman
added a commit
to schotman/Dnn.Platform
that referenced
this issue
Mar 20, 2025
When a user with edit rights (aka admin, NOT host) copies an existing module that has "inherit permissions" unchecked, no permissions are saved for the new module. For the admin user the module "vanishes" from the page (seems to be not added). However the host user still sees the module. line 688 fix issue dnnsoftware#5633
schotman
added a commit
to schotman/Dnn.Platform
that referenced
this issue
Mar 20, 2025
When a user with edit rights (aka admin, NOT host) copies an existing module that has "inherit permissions" unchecked, no permissions are saved for the new module. For the admin user the module "vanishes" from the page (seems to be not added). However the host user still sees the module. line 688 fix issue dnnsoftware#5633
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description of bug
When you place an existing module that has the checkbox "Inherit View permissions from Page" turned off, you end up with a module without any permissions
Steps to reproduce
List the precise steps to reproduce the bug:
As Host;
Current behavior
When opening the module permissions for the copied module you will see that the right for "Registered Users" were not copied. Also the module is not visible to administrators.
This is due to the fact that there are no records for the module in the ModulePermissions Table.
SELECT * FROM vw_ModulePermissions where ModuleId = [moduleid]
gives back no records
If you set the Permissions for the module after you copied it, they do get saved to the ModulePermissions Table and the module is visible to Admins again.
Expected behavior
Permissions of the original module should be copied to the new module
Affected version
The text was updated successfully, but these errors were encountered: