mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/12509] Add missing ',' in arrays
PHPBB3-12509
This commit is contained in:
parent
9d7c36041e
commit
9a846e447b
5 changed files with 5 additions and 5 deletions
|
@ -54,7 +54,7 @@ $template->set_custom_style(array(
|
|||
array(
|
||||
'name' => 'adm',
|
||||
'ext_path' => 'adm/style/',
|
||||
)
|
||||
),
|
||||
), $phpbb_admin_path . 'style');
|
||||
|
||||
$template->assign_var('T_ASSETS_PATH', $phpbb_root_path . 'assets');
|
||||
|
|
|
@ -256,7 +256,7 @@ class messenger
|
|||
array(
|
||||
'name' => $template_lang . '_email',
|
||||
'ext_path' => 'language/' . $template_lang . '/email'
|
||||
)
|
||||
),
|
||||
), $template_paths);
|
||||
|
||||
$this->template->set_filenames(array(
|
||||
|
|
|
@ -585,7 +585,7 @@ class p_master
|
|||
array(
|
||||
'name' => 'adm',
|
||||
'ext_path' => 'adm/style/',
|
||||
)
|
||||
),
|
||||
), array($module_style_dir, $phpbb_admin_path . 'style'));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -254,7 +254,7 @@ $template->set_custom_style(array(
|
|||
array(
|
||||
'name' => 'adm',
|
||||
'ext_path' => 'adm/style/',
|
||||
)
|
||||
),
|
||||
), $paths);
|
||||
|
||||
$path = array_shift($paths);
|
||||
|
|
|
@ -145,7 +145,7 @@ class install_update extends module
|
|||
array(
|
||||
'name' => 'adm',
|
||||
'ext_path' => 'adm/style/',
|
||||
)
|
||||
),
|
||||
), $paths);
|
||||
|
||||
$template->assign_vars(array(
|
||||
|
|
Loading…
Add table
Reference in a new issue