diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-13 23:39:42 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-13 23:39:42 +0200 |
commit | 1e427fa031eea8dd6a1e04f1407f996d1d948203 (patch) | |
tree | 68c90aae0216728dd8427b05294bf7c57505159b /phpBB/adm | |
parent | 910b9b59b39ffab0614a310cfa9ddcf42723fe89 (diff) | |
download | forums-1e427fa031eea8dd6a1e04f1407f996d1d948203.tar forums-1e427fa031eea8dd6a1e04f1407f996d1d948203.tar.gz forums-1e427fa031eea8dd6a1e04f1407f996d1d948203.tar.bz2 forums-1e427fa031eea8dd6a1e04f1407f996d1d948203.tar.xz forums-1e427fa031eea8dd6a1e04f1407f996d1d948203.zip |
[ticket/12509] Fix the call to set_custom_file in adm/index and messenger
PHPBB3-12509
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/index.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php index 973ce8fe5d..31965cec28 100644 --- a/phpBB/adm/index.php +++ b/phpBB/adm/index.php @@ -51,8 +51,10 @@ $mode = request_var('mode', ''); // Set custom style for admin area $template->set_custom_style(array( - 'name' => 'adm', - 'ex_path' => 'adm/', + array( + 'name' => 'adm', + 'ex_path' => 'adm/', + ) ), $phpbb_admin_path . 'style'); $template->assign_var('T_ASSETS_PATH', $phpbb_root_path . 'assets'); |