We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c881baf commit 23004aaCopy full SHA for 23004aa
src/orange/cfhelper/connectors/AbstractConnector.php
@@ -76,7 +76,7 @@ protected function parseUrl($url)
76
$toReturn['port'] = $parsedUrl['port'];
77
$toReturn['user'] = $parsedUrl['user'];
78
$toReturn['pass'] = $parsedUrl['pass'];
79
- $toReturn['path'] = $parsedUrl['path'];
+ $toReturn['path'] = str_replace('/', '', $parsedUrl['path']);
80
return $toReturn;
81
}
82
@@ -91,4 +91,4 @@ public function getCredentials()
91
92
93
94
-}
+}
0 commit comments