Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -13,3 +13,12 @@ function syslog_install() {
|
|||
// to be set dynamically during installation.
|
||||
\Drupal::configFactory()->getEditable('syslog.settings')->set('facility', defined('LOG_LOCAL0') ? LOG_LOCAL0 : LOG_USER)->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert syslog.settings.facility to an integer.
|
||||
*/
|
||||
function syslog_update_8400() {
|
||||
$config = \Drupal::configFactory()->getEditable('syslog.settings');
|
||||
$facility = (int) $config->get('facility');
|
||||
$config->set('facility', $facility)->save(TRUE);
|
||||
}
|
||||
|
|
Reference in a new issue