mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-28 20:40:24 +02:00
consistant obtain_* functions
git-svn-id: file:///svn/phpbb/trunk@6572 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -214,8 +214,7 @@ function posting_gen_topic_icons($mode, $icon_id)
|
||||
global $phpbb_root_path, $config, $template, $cache;
|
||||
|
||||
// Grab icons
|
||||
$icons = array();
|
||||
$cache->obtain_icons($icons);
|
||||
$icons = $cache->obtain_icons();
|
||||
|
||||
if (!$icon_id)
|
||||
{
|
||||
@@ -339,9 +338,7 @@ function upload_attachment($form_name, $forum_id, $local = false, $local_storage
|
||||
return $filedata;
|
||||
}
|
||||
|
||||
$extensions = array();
|
||||
$cache->obtain_attach_extensions($extensions, $forum_id);
|
||||
|
||||
$extensions = $cache->obtain_attach_extensions($forum_id);
|
||||
$upload->set_allowed_extensions(array_keys($extensions['_allowed_']));
|
||||
|
||||
$file = ($local) ? $upload->local_upload($local_storage) : $upload->form_upload($form_name);
|
||||
|
Reference in New Issue
Block a user