1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/13276] Support PHPBB_USE_BOARD_URL_PATH in web root path

PHPBB3-13276
This commit is contained in:
Marc Alexander
2023-06-30 16:42:27 +02:00
parent 22d6b035d6
commit a686a2f057
7 changed files with 15 additions and 17 deletions

View File

@@ -139,7 +139,7 @@ class renderer implements \phpbb\textformatter\renderer_interface
/**
* @see smiley_text()
*/
$root_path = (defined('PHPBB_USE_BOARD_URL_PATH') && PHPBB_USE_BOARD_URL_PATH) ? generate_board_url() . '/' : $path_helper->get_web_root_path();
$root_path = $path_helper->get_web_root_path();
$this->set_smilies_path($root_path . $config['smilies_path']);
}