Loading...
 
Features / Usability

Features / Usability


Re: Page autors can admin their page not working?

posts: 1092

It was a bug. Fixed in 1.9.3

Apply this patch in tiki-editpage.php
change the line

Image
Copy to clipboard
if ($tiki_p_admin != 'y' && !$tikilib->user_has_perm_on_object($user, $page, 'wiki page', 'tiki_p_edit')) {

to the line

Image
Copy to clipboard
if (!($tiki_p_admin == 'y' || $tikilib->user_has_perm_on_object($user, $page, 'wiki page', 'tiki_p_edit') || ($wiki_creator_admin == 'y' && $user && $info['creator'] == $user))) {

There are no comments at this time.