Skip to content
Snippets Groups Projects
Commit d9ab6e96 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed bug: install.php corrupted vufind.org comment.

parent 8abae60b
No related merge requests found
......@@ -350,7 +350,7 @@ function buildApacheConfig($baseDir, $overrideDir, $basePath, $module, $multi, $
}
$config = str_replace("/usr/local/vufind/local", "%override-dir%", $config);
$config = str_replace("/usr/local/vufind", "%base-dir%", $config);
$config = str_replace("/vufind", "%base-path%", $config);
$config = preg_replace("|([^/])\/vufind|", "$1%base-path%", $config);
$config = str_replace("%override-dir%", $overrideDir, $config);
$config = str_replace("%base-dir%", $baseDir, $config);
$config = str_replace("%base-path%", $basePath, $config);
......
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