Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 8cc35a9

Browse files
committed
correct smb path string
1 parent 9a9fa68 commit 8cc35a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/plugins/auth.smb/class.smbAuthDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function checkPassword($login, $pass, $seed)
7272
if(!empty($domain)){
7373
$login = $domain.$login;
7474
}
75-
$strTmp = "$login:$pass@".$host."/".$basePath."/".$smbPath."/";
75+
$strTmp = "$login:$pass@".$host."/".$basePath."/";
7676
$strTmp = str_replace("//", "/",$strTmp);
7777
$url = "smb://".$strTmp;
7878
try {

0 commit comments

Comments
 (0)