Bug tracker

This ticket has been moved to our new tracker. Open Ticket PHPBB3-7811 now.

Forum tree is not build properly in /includes/acp/acp_attachments.php (fix completed in vcs)

I get error that prevent loading page to modify an extention group.

$padding_store[$row['parent_id']]; was undefined on line 798, so error was displayed at the beggining of the output, and cause error on further header send in index.php.

The reason was because $auth->acl_get('f_list', $row['forum_id']) was wrong on the parent, so the parent was not in $padding_store.

Reproductible : always , define a forum with acl f_list forbiden and a subforum with f_list enable, then try to modify an attachement group => impossible.


Solution : maybe on line 790 :

if (!isset($padding_store[$row['parent_id']]))
{
continue;
}

Comments / History

Edited ticket

Action performed by Joker-eph on Oct 21st 2008, 08:48

Changed ticket status from "New" to "Fix in progress"

Action performed by Acyd Burn (Server Manager) on Nov 2nd 2008, 10:57

Assigned ticket to user "Acyd Burn"

Action performed by Acyd Burn (Server Manager) on Nov 2nd 2008, 10:57

Linked ticket with changeset: r9041

Action performed by Anonymous (I am too lazy to register) on Nov 2nd 2008, 11:19

Changed ticket status from "Fix in progress" to "Fix completed in SVN"

Action performed by Acyd Burn (Server Manager) on Nov 2nd 2008, 11:19

Ticket details

Related SVN changesets