1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/15692] Append / to board url

PHPBB3-15692
This commit is contained in:
Rubén Calvo
2018-08-28 00:32:06 +02:00
parent 252bb7704c
commit 8d89f20b81

View File

@@ -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;
}
/**