Commit dd1afa99 authored by tbrehm's avatar tbrehm
Browse files

Fixed syntax error in apache plugin.

parent 4b9169b7
......@@ -1262,13 +1262,10 @@ class apache2_plugin {
*/
$fn = substr($file, 0, strlen($file) - strlen('.htdigest'));
$output .= "\n";
<<<<<<< .working
$output .= " Alias /" . $fn . ' ' . $webdavRoot . '/' . $fn . "\n";
$output .= " <Location /" . $fn . ">\n";
=======
// $output .= " Alias /" . $fn . ' ' . $webdavRoot . '/' . $fn . "\n";
// $output .= " <Location /" . $fn . ">\n";
$output .= " Alias /webdav/" . $fn . ' ' . $webdavRoot . '/' . $fn . "\n";
$output .= " <Location /webdav/" . $fn . ">\n";
>>>>>>> .merge-right.r2129
$output .= " DAV On\n";
$output .= " AuthType Digest\n";
$output .= " AuthName \"" . $fn . "\"\n";
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment