Skip to content

Commit

Permalink
Fixed bug: install.php corrupted vufind.org comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed Jan 6, 2014
1 parent b7749b8 commit 2470eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2470eaf

Please sign in to comment.