From 8d89f20b81167520ee36aa78925b1dfe7eeffbbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Tue, 28 Aug 2018 00:32:06 +0200 Subject: [PATCH] [ticket/15692] Append / to board url PHPBB3-15692 --- phpBB/phpbb/storage/adapter/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/storage/adapter/local.php b/phpBB/phpbb/storage/adapter/local.php index 2ea8b8b03e..2b4b550aff 100644 --- a/phpBB/phpbb/storage/adapter/local.php +++ b/phpBB/phpbb/storage/adapter/local.php @@ -418,7 +418,7 @@ class local implements adapter_interface, stream_interface */ public function get_link($path) { - return generate_board_url() . $this->path . $path; + return generate_board_url() . '/' . $this->path . $path; } /**