Company Users unable to post time

Project:ProjectPier
Version:0.8.6-beta2
Component:User interface
Category:support request
Priority:critical
Assigned:phpfreak
Status:closed - fixed
Description

My company users, when they click the Time Tab do not see the option to "Add Time". When I give them the URL to add time they receive a error that says "You don't have permission to access the requested page"

How can I have them add time?

#1
Assigned to:Visitor» phpfreak
Status:new» closed - fixed

The permission to manage times is missing from the initial installation files. Fixed in stable release.

Database fix:

INSERT INTO
`permissions` (`source`, `permission`)
VALUES
('times', 'manage');

Then you will be able to give project users permissions to add times within your project.

File fix:

You will also have to add an entry to language file project_interface.php for 'can manage times':

'can manage times' => 'Can manage time',

Thanks!

#2

Thank you!

#3

THANK YOU!!!