Skip to content
Snippets Groups Projects
Commit 0ff3f159 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1305 - Webdav user information is not written to domains vhost file.

parent 0c05d995
No related branches found
No related tags found
2 merge requests!46Master,!21Master
......@@ -1155,26 +1155,29 @@ class apache2_plugin {
*/
private function _writeHtDigestFile($filename, $username, $authname, $pwdhash ) {
$changed = false;
$in = fopen($filename, 'r');
$output = '';
/*
* read line by line and search for the username and authname
*/
while (preg_match("/:/", $line = fgets($in))) {
$line = rtrim($line);
$tmp = explode(':', $line);
if ($tmp[0] == $username && $tmp[1] == $authname) {
/*
* found the user. delete or change it?
*/
if ($pwdhash != '') {
$output .= $tmp[0] . ':' . $tmp[1] . ':' . $pwdhash . "\n";
}
$changed = true;
}
else {
$output .= $line . "\n";
if(is_file($filename)) {
$in = fopen($filename, 'r');
$output = '';
/*
* read line by line and search for the username and authname
*/
while (preg_match("/:/", $line = fgets($in))) {
$line = rtrim($line);
$tmp = explode(':', $line);
if ($tmp[0] == $username && $tmp[1] == $authname) {
/*
* found the user. delete or change it?
*/
if ($pwdhash != '') {
$output .= $tmp[0] . ':' . $tmp[1] . ':' . $pwdhash . "\n";
}
$changed = true;
}
else {
$output .= $line . "\n";
}
}
fclose($in);
}
/*
* if we didn't change anything, we have to add the new user at the end of the file
......@@ -1182,7 +1185,7 @@ class apache2_plugin {
if (!$changed) {
$output .= $username . ':' . $authname . ':' . $pwdhash . "\n";
}
fclose($in);
/*
* Now lets write the new file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment