1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-11 11:24:23 +02:00

[ticket/15289] Remove switch since there is only one mode

PHPBB3-15289
This commit is contained in:
Rubén Calvo 2017-08-08 12:54:49 +02:00
parent 4c9670363c
commit ab2dfc2762

View File

@ -77,12 +77,7 @@ class acp_storage
$vars = array();
extract($phpbb_dispatcher->trigger_event('core.acp_storage_load', compact($vars)));
switch ($mode)
{
case 'settings':
$this->overview($id, $mode);
break;
}
$this->overview($id, $mode);
}
public function overview($id, $mode)