Sever -> server in error message

This commit is contained in:
Evan Prodromou 2010-01-10 22:59:32 -08:00
parent 15b88697a7
commit ad63a9518c
1 changed files with 2 additions and 2 deletions

View File

@ -814,14 +814,14 @@ function common_path($relative, $ssl=false)
} else if (common_config('site', 'server')) {
$serverpart = common_config('site', 'server');
} else {
common_log(LOG_ERR, 'Site Sever not configured, unable to determine site name.');
common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
}
} else {
$proto = 'http';
if (common_config('site', 'server')) {
$serverpart = common_config('site', 'server');
} else {
common_log(LOG_ERR, 'Site Sever not configured, unable to determine site name.');
common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
}
}