diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-10-18 11:22:19 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-10-18 11:22:19 +0200 |
commit | afe91fa7d3af0d30389c49428b30c9aeb0fe0916 (patch) | |
tree | 768ad2cd961186a7fc6db406be5691505a92d439 /phpBB | |
parent | 85eb6a0bc0575c687eb43efe61cf206b26b26af8 (diff) | |
download | forums-afe91fa7d3af0d30389c49428b30c9aeb0fe0916.tar forums-afe91fa7d3af0d30389c49428b30c9aeb0fe0916.tar.gz forums-afe91fa7d3af0d30389c49428b30c9aeb0fe0916.tar.bz2 forums-afe91fa7d3af0d30389c49428b30c9aeb0fe0916.tar.xz forums-afe91fa7d3af0d30389c49428b30c9aeb0fe0916.zip |
[ticket/14039] Fix T_TEMPLATE_PATH constant
PHPBB3-14039
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/installer_header.html | 2 | ||||
-rw-r--r-- | phpBB/phpbb/install/controller/helper.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/installer_header.html b/phpBB/adm/style/installer_header.html index 775caa7c67..c4c3427fdb 100644 --- a/phpBB/adm/style/installer_header.html +++ b/phpBB/adm/style/installer_header.html @@ -6,7 +6,7 @@ <!-- IF META -->{META}<!-- ENDIF --> <title>{PAGE_TITLE}</title> - <link href="{T_TEMPLATE_PATH}/admin.css" rel="stylesheet" type="text/css" media="screen" /> + <link href="{T_TEMPLATE_PATH}admin.css" rel="stylesheet" type="text/css" media="screen" /> </head> <body class="{S_CONTENT_DIRECTION} nojs"> diff --git a/phpBB/phpbb/install/controller/helper.php b/phpBB/phpbb/install/controller/helper.php index ef6b8ba3c2..bfa9ec6238 100644 --- a/phpBB/phpbb/install/controller/helper.php +++ b/phpBB/phpbb/install/controller/helper.php @@ -271,7 +271,7 @@ class helper 'PAGE_TITLE' => $this->language->lang($page_title), 'T_IMAGE_PATH' => $this->path_helper->get_web_root_path() . $path . 'images/', 'T_JQUERY_LINK' => $this->path_helper->get_web_root_path() . $path . '../assets/javascript/jquery.min.js', - 'T_TEMPLATE_PATH' => $this->path_helper->get_web_root_path() . $path . 'style', + 'T_TEMPLATE_PATH' => $this->path_helper->get_web_root_path() . $path . 'style/', 'T_ASSETS_PATH' => $this->path_helper->get_web_root_path() . $path . '../assets/', 'S_CONTENT_DIRECTION' => $this->language->lang('DIRECTION'), |