Defect #3778
Non-administrator users cannot set parent project for new projects
| Status: | Closed | Start date: | 2009-08-25 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| Affected version: | Resolution: | Duplicate |
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.
Related issues
History
Updated by Patrice Bonhomme over 2 years ago
- File 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 Patrice Bonhomme over 2 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 over 2 years ago
- Status changed from Resolved to Closed
- Resolution set to Duplicate
This is a duplicate of #2963