|
In Englisch:
Mambo Version: 4.5.2 Siehe auch: Posting You
have to hack /classes/gacl.class.php for that. Depending on what the
user should be allowed to do add something like these lines in
gacl.class.php around line 160
array( 'action', 'add', 'users', 'registered', 'content', 'own' ),
array( 'action', 'edit', 'users', 'registered', 'content', 'own' ),
array( 'action', 'publish', 'users', 'registered', 'content', 'own')
This will allow registered users to add/edit/publish their own content. Make sure that when adding these lines after line 180 you must not add a comma to the last line !
|