Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Zvonimir
ISPConfig 3
Commits
dd1afa99
Commit
dd1afa99
authored
Nov 30, 2010
by
tbrehm
Browse files
Fixed syntax error in apache plugin.
parent
4b9169b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/apache2_plugin.inc.php
View file @
dd1afa99
...
...
@@ -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
"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment