18 lines
316 B
Plaintext
18 lines
316 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install, update, and uninstall functions for the Text module.
|
|
*/
|
|
|
|
/**
|
|
* Moves teaser length from variable to config.
|
|
*
|
|
* @ingroup config_upgrade
|
|
*/
|
|
function text_update_8000() {
|
|
update_variables_to_config('text.settings', array(
|
|
'teaser_length' => 'default_summary_length',
|
|
));
|
|
}
|