Author: kake
Date: 2008-06-21 18:24:00 +0100 (Sat, 21 Jun 2008)
New Revision: 1172
Modified:
branches/new-install-process/bin/openguides-install
branches/new-install-process/lib/OpenGuides/Config.pm
Log:
Standardise slash vs. no slash on ends of directory names in install process (cosmetic
change only).
Modified: branches/new-install-process/bin/openguides-install
===================================================================
--- branches/new-install-process/bin/openguides-install 2008-06-21 17:15:43 UTC (rev
1171)
+++ branches/new-install-process/bin/openguides-install 2008-06-21 17:24:00 UTC (rev
1172)
@@ -231,12 +231,12 @@
if ( $var eq "template_path" && !defined $existing_config->$var
) {
$def = $install_directory;
$def .= "/" unless $def =~ m|/$|;
- $def .= "templates";
+ $def .= "templates/";
}
if ( $var eq "custom_template_path" && !defined
$existing_config->$var ) {
$def = $install_directory;
$def .= "/" unless $def =~ m|/$|;
- $def .= "custom-templates";
+ $def .= "custom-templates/";
}
# If a Google Maps URL was provided last time we know the centre_lat
Modified: branches/new-install-process/lib/OpenGuides/Config.pm
===================================================================
--- branches/new-install-process/lib/OpenGuides/Config.pm 2008-06-21 17:15:43 UTC (rev
1171)
+++ branches/new-install-process/lib/OpenGuides/Config.pm 2008-06-21 17:24:00 UTC (rev
1172)
@@ -113,7 +113,7 @@
licence_info_url => "",
spam_detector_module => "",
host_checker_module => "",
- static_path => "/usr/local/share/openguides/static",
+ static_path => "/usr/local/share/openguides/static/",
send_moderation_notifications => 1
);