diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-10 21:16:08 -0600 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-10 21:16:08 -0600 |
| commit | 61391f648c95251466f805f148f1656e940f2027 (patch) | |
| tree | a03d99c0a6049d5a4e31bfa3f8b06a16b4914dc1 /phpBB/install/index.php | |
| parent | 30de17f69f70a0c23fa314de479bac57e3dbae2b (diff) | |
| download | forums-61391f648c95251466f805f148f1656e940f2027.tar forums-61391f648c95251466f805f148f1656e940f2027.tar.gz forums-61391f648c95251466f805f148f1656e940f2027.tar.bz2 forums-61391f648c95251466f805f148f1656e940f2027.tar.xz forums-61391f648c95251466f805f148f1656e940f2027.zip | |
[ticket/11259] htmlspecialchars($phpbb_admin_path)
PHPBB3-11259
Diffstat (limited to 'phpBB/install/index.php')
| -rw-r--r-- | phpBB/install/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 69e9e7de42..643695ee2b 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -374,7 +374,7 @@ class module 'L_SELECT_LANG' => $lang['SELECT_LANG'], 'L_SKIP' => $lang['SKIP'], 'PAGE_TITLE' => $this->get_page_title(), - 'T_IMAGE_PATH' => $phpbb_admin_path . 'images/', + 'T_IMAGE_PATH' => htmlspecialchars($phpbb_admin_path) . 'images/', 'S_CONTENT_DIRECTION' => $lang['DIRECTION'], 'S_CONTENT_FLOW_BEGIN' => ($lang['DIRECTION'] == 'ltr') ? 'left' : 'right', @@ -577,7 +577,7 @@ class module echo '<head>'; echo '<meta charset="utf-8">'; echo '<title>' . $lang['INST_ERR_FATAL'] . '</title>'; - echo '<link href="' . $phpbb_admin_path . 'style/admin.css" rel="stylesheet" type="text/css" media="screen" />'; + echo '<link href="' . htmlspecialchars($phpbb_admin_path) . 'style/admin.css" rel="stylesheet" type="text/css" media="screen" />'; echo '</head>'; echo '<body id="errorpage">'; echo '<div id="wrap">'; |
