Merge branch '0.8.x' into queuemanager

This commit is contained in:
Evan Prodromou
2009-07-03 03:08:34 -04:00
9 changed files with 34 additions and 17 deletions

View File

@@ -978,7 +978,8 @@ function common_ensure_syslog()
{
static $initialized = false;
if (!$initialized) {
openlog(common_config('syslog', 'appname'), 0, LOG_USER);
openlog(common_config('syslog', 'appname'), 0,
common_config('syslog', 'facility'));
$initialized = true;
}
}