Defect #3778
closedNon-administrator users cannot set parent project for new projects
0%
Description
It is not possible for non-administrator users to set the parent of the project to be created. There is no parent project field on the new project page, even if i am the owner of the project that i want to set as parent. There is no such option even in the settings page of an existing project.
I am using the svn trunk version.
Files
Related issues
Updated by Anonymous about 15 years ago
- File 003-redmine-admin-project.diff 003-redmine-admin-project.diff added
- Status changed from New to Resolved
In the file app/views/projects/_form.rhtml, change the line :
<% if User.current.admin? && !@project.possible_parents.empty? %>
With :
<% if !@project.possible_parents.empty? %>
This is what i have done and it works.
Updated by Anonymous about 15 years ago
Arghhhhh !!!!
In the file app/views/projects/_form.rhtml, change the line :
<% if User.current.admin? && !@project.possible_parents.empty? %>
With :
<% if !@project.possible_parents.empty? %>
This is what i have done and it works.
Updated by Eric Davis about 15 years ago
- Status changed from Resolved to Closed
- Resolution set to Duplicate
This is a duplicate of #2963