From a84eff5c3be41e6ab4f56ac4b81cd080e5db6081 Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Thu, 26 Sep 2013 15:32:16 +0000 Subject: [PATCH] Fixed regression introduced on fix [2829] SVN:trunk[2866] --- setup/setuputils.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setuputils.class.inc.php b/setup/setuputils.class.inc.php index 37c1473f1..f738fa054 100644 --- a/setup/setuputils.class.inc.php +++ b/setup/setuputils.class.inc.php @@ -1364,7 +1364,7 @@ EOF sort($aDirs); // Windows: there is a backslash at the end (though the path is made of slashes!!!) $sDir = basename(array_pop($aDirs)); - $sRes = $sBaseDir.'/'.$sDir; + $sRes = $sBaseDir.'/'.$sDir.'/'; return $sRes; } return false;