From a01d33b1fa103b3bb6b827718ae98a4ec5a14932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Tue, 27 Jun 2017 21:35:51 +0200 Subject: [PATCH] [ticket/15253] Add missing return PHPBB3-15253 --- phpBB/phpbb/filesystem/helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/filesystem/helper.php b/phpBB/phpbb/filesystem/helper.php index 1f434bac50..6dd58008dc 100644 --- a/phpBB/phpbb/filesystem/helper.php +++ b/phpBB/phpbb/filesystem/helper.php @@ -213,7 +213,7 @@ class helper */ public static function make_path_relative($end_path, $start_path) { - self::get_symfony_filesystem()->makePathRelative($end_path, $start_path); + return self::get_symfony_filesystem()->makePathRelative($end_path, $start_path); } /**