1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/15371] Split uploaded files into subdirectories

PHPBB3-15371
This commit is contained in:
Rubén Calvo
2017-09-21 20:56:56 +02:00
parent 449b930c5e
commit 5edb8f0b5b
5 changed files with 106 additions and 15 deletions

View File

@@ -36,7 +36,10 @@ class local implements provider_interface
*/
public function get_options()
{
return ['path' => array('type' => 'text')];
return [
'path' => array('type' => 'text'),
'depth' => array('type' => 'text'),
];
}
/**